mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
17 lines
528 B
Bash
Executable File
17 lines
528 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/ssh-keys/functions"
|
|
|
|
remove_key() {
|
|
declare desc="Removes key from authorized_keys"
|
|
local cmd="ssh-keys:remove"
|
|
shift
|
|
local name="$1"
|
|
verify_ssh_key_file
|
|
[[ -z $1 ]] && dokku_log_fail "A name is required to remove a key, ie: dokku ssh-keys:remove <name>"
|
|
sshcommand acl-remove dokku "$name" || dokku_log_fail "sshcommand returned an error $?"
|
|
}
|
|
|
|
remove_key "$@"
|