mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
20 lines
422 B
Bash
Executable File
20 lines
422 B
Bash
Executable File
#!/bin/bash
|
|
set +x
|
|
|
|
if [ `id -u` -ge 500 ]; then
|
|
echo "awx:x:`id -u`:`id -g`:,,,:/tmp:/bin/bash" >> /tmp/passwd
|
|
cat /tmp/passwd > /etc/passwd
|
|
rm /tmp/passwd
|
|
fi
|
|
|
|
/bootstrap_development.sh
|
|
|
|
cd /awx_devel
|
|
# Start the services
|
|
if [ -f "/awx_devel/tools/docker-compose/use_dev_supervisor.txt" ]; then
|
|
make supervisor
|
|
else
|
|
export PYTHONIOENCODING=utf_8
|
|
honcho start -f "tools/docker-compose/Procfile"
|
|
fi
|