Files
dokku/plugins/domains/domains-vhost-enabled
Jose Diaz-Gonzalez 61a306664f refactor: move domain manipulation into triggers
This allows other plugins to avoid understanding the underlying details of how domains might be integrated with.
2020-05-06 00:16:51 -04:00

17 lines
405 B
Bash
Executable File

#!/usr/bin/env bash
source "$PLUGIN_AVAILABLE_PATH/domains/functions"
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
trigger-domains-domains-vhost-enabled() {
declare desc="returns whether vhosts are enabled or not"
declare trigger="domains-vhost-enabled"
declare APP="$1"
if [[ "$(is_app_vhost_enabled "$APP")" == "false" ]]; then
return 1
fi
}
trigger-domains-domains-vhost-enabled "$@"