remove some extraneous invocations of cat.
[monkeysphere.git] / src / share / mh / set_expire
index 653149fe1957f73b3c0d1f7ed4c4a7499fc6700e..a6bf1f13ae5e33f42fade4091350f7a62993dbc0 100644 (file)
@@ -21,12 +21,26 @@ 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:-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 <<EOF
 $extendTo
 save
 EOF
 
-cat <<EOF | log info
+update_gpg_pub_file
+
+log info <<EOF
 NOTE: Host key expiration date adjusted, but not yet published.
 Run '$PGRM publish-key' to publish the new expiration date.
 EOF