mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
da5e6883d4
This fixes some issues with openshift under certain security policies
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
|