~rogpeppe/juju-core/themue-058-debug-log-api

« back to all changes in this revision

Viewing changes to cmd/juju/authorisedkeys.go

  • Committer: Tarmac
  • Author(s): Ian Booth
  • Date: 2013-12-13 07:40:58 UTC
  • mfrom: (2118.8.15 import-ssh-keys)
  • Revision ID: tarmac-20131213074058-lvu8quxabteb418q
[r=wallyworld] Implement ssh import key command

This branch follows on from the previous work to
provide add/delete/list commands for ssh keys.
The import command uses ssh-import-id to allow
a Launchpad or GitHub or .... ssh key to be
imported into Juju.

https://codereview.appspot.com/40690050/

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
                        Purpose:     "manage authorised ssh keys",
29
29
                }),
30
30
        }
31
 
        sshkeyscmd.Register(&AddKeyCommand{})
32
 
        sshkeyscmd.Register(&DeleteKeyCommand{})
 
31
        sshkeyscmd.Register(&AddKeysCommand{})
 
32
        sshkeyscmd.Register(&DeleteKeysCommand{})
 
33
        sshkeyscmd.Register(&ImportKeysCommand{})
33
34
        sshkeyscmd.Register(&ListKeysCommand{})
34
35
        return sshkeyscmd
35
36
}