diff options
-rw-r--r-- | cloudinit/CloudConfig/cc_ssh_import_id.py | 2 | ||||
-rw-r--r-- | doc/examples/cloud-config.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/CloudConfig/cc_ssh_import_id.py b/cloudinit/CloudConfig/cc_ssh_import_id.py index dd4d3184..bf1314be 100644 --- a/cloudinit/CloudConfig/cc_ssh_import_id.py +++ b/cloudinit/CloudConfig/cc_ssh_import_id.py @@ -31,7 +31,7 @@ def handle(name,cfg,cloud,log,args): if len(ids) == 0: return - cmd = [ "sudo", "-Hu", user, "ssh-import-lp-id" ] + ids + cmd = [ "sudo", "-Hu", user, "ssh-import-id" ] + ids log.debug("importing ssh ids. cmd = %s" % cmd) diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt index 3a46a481..c1510743 100644 --- a/doc/examples/cloud-config.txt +++ b/doc/examples/cloud-config.txt @@ -216,7 +216,7 @@ cloud_config_modules: # ssh_import_id: [ user1, user2 ] # ssh_import_id will feed the list in that variable to -# ssh-import-lp-id, so that public keys stored in launchpad +# ssh-import-id, so that public keys stored in launchpad # can easily be imported into the configured user # This can be a single string ('smoser') or a list ([smoser, kirkland]) ssh_import_id: [smoser] |