mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
15 lines
236 B
Bash
Executable File
15 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ `id -u` -ge 500 ] || [ -z "${CURRENT_UID}" ]; then
|
|
|
|
cat << EOF > /tmp/passwd
|
|
root:x:0:0:root:/root:/bin/bash
|
|
awx:x:`id -u`:`id -g`:,,,:/tmp:/bin/bash
|
|
EOF
|
|
|
|
cat /tmp/passwd > /etc/passwd
|
|
rm /tmp/passwd
|
|
fi
|
|
|
|
exec $@
|