0a1fa6c7b0
'function' keyword is a bash extension and not recognizable by sh. Change-Id: I96205e337a28e12f3e3d06ca99e5f04e0f9a38f4 Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
18 lines
231 B
Smarty
18 lines
231 B
Smarty
#!/bin/sh
|
|
set -xe
|
|
|
|
COMMAND="${@:-start}"
|
|
|
|
start () {
|
|
envsubst < /etc/nginx/nginx.conf > /tmp/nginx.conf
|
|
cat /tmp/nginx.conf
|
|
nginx -t -c /tmp/nginx.conf
|
|
exec nginx -c /tmp/nginx.conf
|
|
}
|
|
|
|
stop () {
|
|
nginx -s stop
|
|
}
|
|
|
|
$COMMAND
|