Remove Ansible from control plane

Execution Environments or bust!
This commit is contained in:
Shane McDonald
2021-02-08 14:29:32 -05:00
parent ea39cbce73
commit ddcbc408b9
2 changed files with 3 additions and 33 deletions

View File

@@ -1,14 +1,6 @@
#!/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=postgres port=5432" all
ansible -i "127.0.0.1," -c local -v -m wait_for -a "path=/var/run/redis/redis.sock" all
# In case AWX in the container wants to connect to itself, use "docker exec" to attach to the container otherwise
# TODO: FIX
#/etc/init.d/ssh start
# Move to the source directory so we can bootstrap
if [ -f "/awx_devel/manage.py" ]; then
cd /awx_devel