mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
766a5c0c3f
using supervisor gives us the ability to restart entire processes on code change (like the dispatcher and callback receiver)
31 lines
930 B
Bash
Executable File
31 lines
930 B
Bash
Executable File
#!/bin/bash
|
|
set +x
|
|
|
|
# Wait for the databases to come up
|
|
ansible -i "127.0.0.1," -c local -v -m wait_for -a "host=postgresql port=5432" all
|
|
ansible -i "127.0.0.1," -c local -v -m wait_for -a "host=localhost port=11211" all
|
|
ansible -i "127.0.0.1," -c local -v -m wait_for -a "host=localhost port=5672" all
|
|
ansible -i "127.0.0.1," -c local -v -m postgresql_db -U postgres -a "name=awx owner=awx login_user=awx login_password=awx login_host=postgresql" all
|
|
|
|
# Move to the source directory so we can bootstrap
|
|
if [ -f "/awx_devel/manage.py" ]; then
|
|
cd /awx_devel
|
|
else
|
|
echo "Failed to find awx source tree, map your development tree volume"
|
|
fi
|
|
|
|
#make awx-link
|
|
python setup.py develop
|
|
yes | cp -rf /awx_devel/tools/docker-compose/supervisor.conf /supervisor.conf
|
|
|
|
# AWX bootstrapping
|
|
make version_file
|
|
make migrate
|
|
make init
|
|
|
|
mkdir -p /awx_devel/awx/public/static
|
|
mkdir -p /awx_devel/awx/ui/static
|
|
|
|
cd /awx_devel
|
|
make supervisor
|