X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fshare%2Fmh%2Fset_expire;h=ae7c13a7089dedaa4baf37bc520f3053a6f137e9;hb=a5d96721e78a06f7dd55071ff3ae61370e00324c;hp=2389e573515505f9d6bdb66e3708680836bcbc56;hpb=9cc92238a9a9b21d37b983932d5a6a012cf80aba;p=monkeysphere.git diff --git a/src/share/mh/set_expire b/src/share/mh/set_expire index 2389e57..ae7c13a 100644 --- a/src/share/mh/set_expire +++ b/src/share/mh/set_expire @@ -14,18 +14,32 @@ # They are Copyright 2008-2009, and are all released under the GPL, # version 3 or later. -set-expire() { +set_expire() { local extendTo # get the new expiration date extendTo=$(get_gpg_expiration "$1") +if [ "$PROMPT" = "true" ] ; then + read -p "Are you sure you want to change the expiration on the host key to '$extendTo'? (y/N) " OK; OK=${OK:-N} + if [ "${OK/y/Y}" != 'Y' ] ; then + failure "expiration not set." + fi +else + log debug "extending without prompting." +fi + +log info "setting host key expiration to ${extendTo}." + +log debug "executing host expire script..." gpg_host_edit expire <