summaryrefslogtreecommitdiff
path: root/src/monkeysphere
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-01-31 17:35:17 -0500
committerJameson Graef Rollins <jrollins@finestructure.net>2009-01-31 17:35:17 -0500
commit968627c7003d059e63ae455d91e1ada4143c8810 (patch)
treeb966cc5b4cbf824d4e414ff3f8452f8a861a1e00 /src/monkeysphere
parentf5916bc01d76a54d9c2b1738c15da588021c63f3 (diff)
add ssh-proxycommand as subcommand to monkeysphere
Diffstat (limited to 'src/monkeysphere')
-rwxr-xr-xsrc/monkeysphere5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/monkeysphere b/src/monkeysphere
index 463a1b1..342d59a 100755
--- a/src/monkeysphere
+++ b/src/monkeysphere
@@ -47,6 +47,7 @@ subcommands:
gen-subkey (g) [KEYID] generate an authentication subkey
--length (-l) BITS key length in bits (2048)
--expire (-e) EXPIRE date to expire
+ ssh-proxycommand ssh proxycommand
subkey-to-ssh-agent (s) store authentication subkey in ssh-agent
version (v) show version number
help (h,?) this help
@@ -424,6 +425,10 @@ case $COMMAND in
gen_subkey "$@"
;;
+ 'ssh-proxycommand'|'p')
+ ssh-proxycommand "$@"
+ ;;
+
'subkey-to-ssh-agent'|'s')
subkey_to_ssh_agent "$@"
;;