Files

28 lines
975 B
Plaintext
Raw Permalink Normal View History

2016-06-30 17:34:07 -07:00
#!/usr/bin/env bash
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
2016-06-30 17:34:07 -07:00
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
2016-07-01 11:42:16 -07:00
source "$PLUGIN_AVAILABLE_PATH/ssh-keys/functions"
2016-06-30 17:34:07 -07:00
cmd-ssh-keys-remove() {
2016-06-30 17:34:07 -07:00
declare desc="Removes key from authorized_keys"
declare cmd="ssh-keys:remove"
[[ "$1" == "$cmd" ]] && shift 1
declare NAME="$1" FINGERPRINT="$2"
2016-06-30 17:34:07 -07:00
verify_ssh_key_file
if [[ "$NAME" == "--fingerprint" ]]; then
[[ -z "$FINGERPRINT" ]] && dokku_log_fail "A fingerprint is required to remove a key, ie: dokku ssh-keys:remove --fingerprint FINGERPRINT"
elif [[ -z "$NAME" ]]; then
dokku_log_fail "A name is required to remove a key, ie: dokku ssh-keys:remove <name>"
fi
if [[ "$NAME" == "--fingerprint" ]]; then
sshcommand acl-remove-by-fingerprint dokku "$FINGERPRINT" || dokku_log_fail "sshcommand returned an error $?"
else
sshcommand acl-remove dokku "$NAME" || dokku_log_fail "sshcommand returned an error $?"
fi
2016-06-30 17:34:07 -07:00
}
cmd-ssh-keys-remove "$@"