mirror of
https://github.com/bitnami/containers.git
synced 2026-03-06 15:09:19 +08:00
16 lines
286 B
Bash
Executable File
16 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${1:0:1}" = '-' ]; then
|
|
export EXTRA_OPTIONS="$@"
|
|
set --
|
|
elif [ "${1}" == "memcached" -o "${1}" == "$(which memcached)" ]; then
|
|
export EXTRA_OPTIONS="${@:2}"
|
|
set --
|
|
fi
|
|
|
|
if [ -n "${1}" ]; then
|
|
touch /etc/services.d/$BITNAMI_APP_NAME/down
|
|
fi
|
|
|
|
exec /init "$@"
|