DEBSOURCES
Skip Quicknav
sources / cockpit-podman / 67-1 / pkg / lib / credentials-ssh-remove-key.sh
12345678910
#!/bin/sh set -eu tempfile=$(mktemp) echo "$1" > "$tempfile" ret=0 ssh-add -d "$tempfile" || ret=1 rm "$tempfile" exit $ret