if httpd -v | grep -q "Apache/2\."; then
  MOD_PYTHON_BRANCH=3
elif httpd -v | grep -q "Apache/1\."; then
  MOD_PYTHON_BRANCH=2
else
  message "${PROBLEM_COLOR}Could not determine Apache version!${DEFAULT_COLOR}"
  return 1
fi
persistent_add MOD_PYTHON_BRANCH
