Merge "Read site name from env instead of hardcoded value"

This commit is contained in:
Zuul 2021-07-16 23:17:32 +00:00 committed by Gerrit Code Review
commit 3cac887c7d
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ export IMAGE_DIR=${IMAGE_DIR:-"/srv/images"}
export SERVE_PORT=${SERVE_PORT:-"8099"}
export AIRSHIPCTL_WS=${AIRSHIPCTL_WS:-$PWD}
export TMP_DIR=${TMP_DIR:-"$(dirname $(mktemp -u))"}
export SITE=${SITE:-"test-site"}
ANSIBLE_CFG=${ANSIBLE_CFG:-"${HOME}/.ansible.cfg"}
ANSIBLE_HOSTS=${ANSIBLE_HOSTS:-"${TMP_DIR}/ansible_hosts"}

View File

@ -15,7 +15,7 @@ serve_dir: /srv/images
serve_port: 8099
local_src_dir: "$AIRSHIPCTL_WS"
ansible_user: root
site_name: test-site
site_name: "$SITE"
sphinx_build_dir: docs/build
python_version: 3.7
zuul: