mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 18:21:12 +03:00
84cd933702
Signed-off-by: Shane McDonald <me@shanemcd.com>
9 lines
255 B
Bash
Executable File
9 lines
255 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [ `id -u` -ge 500 ]; then
|
|
echo "awx:x:`id -u`:`id -g`:,,,:/var/lib/awx:/bin/bash" >> /tmp/passwd
|
|
cat /tmp/passwd > /etc/passwd
|
|
rm /tmp/passwd
|
|
fi
|
|
awx-manage collectstatic --noinput --clear
|
|
supervisord -c /supervisor.conf
|