6 lines
116 B
Bash
6 lines
116 B
Bash
#!/bin/sh
|
|
if [ "${1}" = "-D" ]; then
|
|
exec /usr/bin/supervisord -n -c /etc/supervisord.conf
|
|
else
|
|
exec "$@"
|
|
fi |