Files

17 lines
333 B
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env bash
[[ " help nginx:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
2020-02-10 00:37:00 -05:00
source "$PLUGIN_AVAILABLE_PATH/nginx-vhosts/help-functions"
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
2014-12-12 17:53:30 -08:00
case "$1" in
2014-11-22 17:52:46 -05:00
help | nginx:help)
cmd-nginx-vhosts-help "$@"
;;
*)
2016-02-22 10:16:57 -08:00
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
;;
esac