X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fshare%2Fmh%2Fset_expire;h=9889e76e62bb28391bd83d3de0c654f9a853550e;hb=5c5d7c02c3a185e4a21499858610a04af8a85ab0;hp=653149fe1957f73b3c0d1f7ed4c4a7499fc6700e;hpb=3b81cd012e8224490a3836cccbd7d082a061658e;p=monkeysphere.git diff --git a/src/share/mh/set_expire b/src/share/mh/set_expire index 653149f..9889e76 100644 --- a/src/share/mh/set_expire +++ b/src/share/mh/set_expire @@ -21,12 +21,27 @@ local extendTo # get the new expiration date extendTo=$(get_gpg_expiration "$1") +if [ "$PROMPT" = "true" ] ; then + printf "Are you sure you want to change the expiration on the host key to '%s'? (Y/n) " "$extendTo" >&2 + read OK; OK=${OK:-Y} + 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 <