mirror of
https://github.com/dokku/dokku.git
synced 2026-02-23 19:50:34 +01:00
18 lines
480 B
Bash
Executable File
18 lines
480 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/domains/functions"
|
|
|
|
cmd-domains-disable() {
|
|
declare desc="disable domains/VHOST support via command line"
|
|
declare cmd="domains:disable"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
declare APP="$1"
|
|
|
|
[[ -z "$APP" ]] && dokku_log_fail "Please specify an app to run the command on"
|
|
domains_disable "$APP"
|
|
}
|
|
|
|
cmd-domains-disable "$@"
|