diff options
author | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-05-25 15:59:54 -0400 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-05-25 15:59:54 -0400 |
commit | 4eba4e7e66fc7febb1e7255a649f6b6ad240d653 (patch) | |
tree | f48ee0dedbc4693b7a3f38e54f0ca71d85ac2212 /rhesus | |
parent | ad6dc98e4a8b38ed1ae3972f948723a205306a7d (diff) |
expand howler to handle general gpg maintenence tasks for server
- add "gen-key", "publish-key", and "trust-uids" functions
small tweak to rhesus.
update README and MonkeySpec
Diffstat (limited to 'rhesus')
-rwxr-xr-x | rhesus/rhesus | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rhesus/rhesus b/rhesus/rhesus index dec24a2..7a43fca 100755 --- a/rhesus/rhesus +++ b/rhesus/rhesus @@ -7,7 +7,7 @@ # # Copyright 2008, released under the GPL, version 3 or later -CMD=$(basename $0) +PGRM=$(basename $0) ######################################################################## # FUNCTIONS @@ -15,8 +15,8 @@ CMD=$(basename $0) usage() { cat <<EOF -usage: $CMD k|known_hosts [userid...] - $CMD a|authorized_keys [userid...] +usage: $PGRM k|known_hosts [userid...] + $PGRM a|authorized_keys [userid...] Monkeysphere update of known_hosts or authorized_keys file. If userids are specified, only specified userids will be processed (userids must be included in the appropriate auth_*_ids file). @@ -228,7 +228,7 @@ fi # set user home directory HOME=$(getent passwd "$USER" | cut -d: -f6) -# get ms home directory +# set ms home directory MS_HOME=${MS_HOME:-"$HOME"/.config/monkeysphere} # load configuration file |