mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 12:12:08 +01:00
21 lines
541 B
Bash
Executable File
21 lines
541 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-reset() {
|
|
declare desc="reset app domains to global-configured domains"
|
|
declare cmd="domains:reset"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
declare APP="$1"
|
|
|
|
verify_app_name "$APP"
|
|
fn-domains-clear "$APP"
|
|
domains_setup "$APP"
|
|
plugn trigger post-domains-update "$APP" "reset"
|
|
dokku_log_info1_quiet "Reset domains for $APP"
|
|
}
|
|
|
|
cmd-domains-reset "$@"
|