mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
20 lines
516 B
Bash
Executable File
20 lines
516 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-setup() {
|
|
declare desc="setup domains to default state via command line"
|
|
declare cmd="domains:setup"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
declare APP="$1"
|
|
|
|
verify_app_name "$APP"
|
|
domains_setup "$APP"
|
|
plugn trigger post-domains-update "$APP" "reset"
|
|
dokku_log_info1_quiet "Setup domains for $APP"
|
|
}
|
|
|
|
cmd-domains-setup "$@"
|