# -*-shell-script-*- # This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host set-expire subcommand # # This is a function to set the expiration date of the monkeysphere # host key. # # The monkeysphere scripts are written by: # Jameson Rollins # Jamie McClelland # Daniel Kahn Gillmor # # They are Copyright 2008-2009, and are all released under the GPL, # version 3 or later. 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:-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 <
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2023-06-27 09:35:08 +0200
committerJonas Smedegaard <dr@jones.dk>2023-06-27 09:35:08 +0200
commitfd54908da2b05c526dd3bee9b6dcd093214a220d (patch)
treec69c845069c99d1d01044f6fafda7c08433329c6 /tags/96/3d/1968261464.820434.1564911432962@mail.yahoo.com
parentba46132213560cf3335d53560d519c0ec0190da2 (diff)
Diffstat (limited to 'tags/96/3d/1968261464.820434.1564911432962@mail.yahoo.com')