mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
26 lines
659 B
Bash
Executable File
26 lines
659 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
|
|
cmd-certs-remove() {
|
|
declare desc="removes SSL cert/key from specified app"
|
|
declare cmd="certs:remove"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
declare APP="$1"
|
|
|
|
verify_app_name "$APP"
|
|
local APP_SSL_PATH="$DOKKU_ROOT/$APP/tls"
|
|
|
|
if [[ -d "$APP_SSL_PATH" ]]; then
|
|
dokku_log_info1 "Removing SSL endpoint from $APP"
|
|
rm -rf "$APP_SSL_PATH"
|
|
plugn trigger post-certs-remove "$APP"
|
|
plugn trigger post-domains-update "$APP"
|
|
else
|
|
dokku_log_fail "An app-specific SSL endpoint is not defined"
|
|
fi
|
|
}
|
|
|
|
cmd-certs-remove "$@"
|