remove import_subkey from monkeysphere usage and man page until we get
authorJameson Graef Rollins <jrollins@finestructure.net>
Fri, 20 Feb 2009 03:39:00 +0000 (22:39 -0500)
committerJameson Graef Rollins <jrollins@finestructure.net>
Fri, 20 Feb 2009 03:39:00 +0000 (22:39 -0500)
a chance to fully implement it.

man/man1/monkeysphere.1
src/monkeysphere
src/share/m/import_subkey

index 345e1d8135190c1fb87b586bbcba996ea4801d20..887b5df1d9de1a59b1179240ba08ca99c629949c 100644 (file)
@@ -56,14 +56,6 @@ ID, 1 if no matching keys were found at all, and 2 if matching keys
 were found but none were acceptable.  `a' may be used in place of
 `update-authorized_keys'.
 .TP
-.B import-subkey FILE [KEYID]
-Import an existing ssh RSA key as an authentication subkey for a
-private key in your GnuPG keyring.  KEYID is the key ID for the
-primary key for which the subkey with "authentication" capability will
-be imported.  If no key ID is specified, but only one key exists in
-the secret keyring, that key will be used.  `i' may be used in place
-of `import-subkey'.
-.TP
 .B gen-subkey [KEYID]
 Generate an authentication subkey for a private key in your GnuPG
 keyring.  KEYID is the key ID for the primary key for which the subkey
index cac9a02399bc086bf64dcbbb6c172f3c172fe087..a65cef62273e76671bc6fe658564195551a2ad8a 100755 (executable)
@@ -45,7 +45,6 @@ Monkeysphere client tool.
 subcommands:
  update-known_hosts (k) [HOST]...    update known_hosts file
  update-authorized_keys (a)          update authorized_keys file
- import-subkey (i) FILE [KEYID]      import existing ssh key as gpg subkey
  gen-subkey (g) [KEYID]              generate an authentication subkey
    --length (-l) BITS                  key length in bits (2048)
  ssh-proxycommand                    monkeysphere ssh ProxyCommand
index 1823f71d69ae84b57973aa359f2ed5e587919e3f..7333f808d8c8a0f3fe9b14153c53fa02f2a329a7 100644 (file)
@@ -19,6 +19,9 @@ import_subkey() {
     local gpgSecOut
     local fifoDir
 
+    # FIXME: implement!
+    failure "implement me!"
+
     sshKeyFile="$1"
     shift
 
@@ -33,9 +36,6 @@ import_subkey() {
     # check that an authentication subkey does not already exist
     check_gpg_authentication_subkey "$keyID"
 
-    # FIXME: implement!
-    failure "implement me!"
-
     # setup the temp fifo dir for retrieving the key password
     log debug "creating password fifo..."
     fifoDir=$(msmktempdir)