moved directory for monkeysphere-generated authorized_keys files back to its old...
[monkeysphere.git] / src / share / mh / set_expire
index 0b581d99fa5aadf456b8c5169ae5598d5e23f6f3..ae7c13a7089dedaa4baf37bc520f3053a6f137e9 100644 (file)
@@ -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:-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 <<EOF