X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fshare%2Fmh%2Fset_expire;h=63e5c5546addad6feb04356f3d29f81d9de488e8;hb=e1dcdd693b854afaddb58c2049585ac9247f69a6;hp=0b581d99fa5aadf456b8c5169ae5598d5e23f6f3;hpb=5eab477a9755178abf56eeba5f658db882611eec;p=monkeysphere.git diff --git a/src/share/mh/set_expire b/src/share/mh/set_expire index 0b581d9..63e5c55 100644 --- a/src/share/mh/set_expire +++ b/src/share/mh/set_expire @@ -21,7 +21,16 @@ local extendTo # get the new expiration date extendTo=$(get_gpg_expiration "$1") -log info "setting host key expiration to ${extendTo}:" +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:-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 <