diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-08-22 22:56:45 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-08-22 22:56:45 -0400 |
commit | 0b2656d39db427311266cee5b2ee013de2e56225 (patch) | |
tree | 0df11642997d4231bd309e6ac67e1a65840b91f2 /cloudinit/CloudConfig | |
parent | 3e417ab92486129f00902834d4d6926f91828737 (diff) | |
download | vyos-cloud-init-0b2656d39db427311266cee5b2ee013de2e56225.tar.gz vyos-cloud-init-0b2656d39db427311266cee5b2ee013de2e56225.zip |
fix for syntax error around ecdsa changes
Diffstat (limited to 'cloudinit/CloudConfig')
-rw-r--r-- | cloudinit/CloudConfig/cc_ssh.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/CloudConfig/cc_ssh.py b/cloudinit/CloudConfig/cc_ssh.py index 66587217..ddeb5009 100644 --- a/cloudinit/CloudConfig/cc_ssh.py +++ b/cloudinit/CloudConfig/cc_ssh.py @@ -40,9 +40,9 @@ def handle(name,cfg,cloud,log,args): "rsa_private" : ("/etc/ssh/ssh_host_rsa_key", 0600), "rsa_public" : ("/etc/ssh/ssh_host_rsa_key.pub", 0644), "dsa_private" : ("/etc/ssh/ssh_host_dsa_key", 0600), - "dsa_public" : ("/etc/ssh/ssh_host_dsa_key.pub", 0644) + "dsa_public" : ("/etc/ssh/ssh_host_dsa_key.pub", 0644), "ecdsa_private" : ("/etc/ssh/ssh_host_ecdsa_key", 0600), - "ecdsa_public" : ("/etc/ssh/ssh_host_ecdsa_key.pub", 0644) + "ecdsa_public" : ("/etc/ssh/ssh_host_ecdsa_key.pub", 0644), } for key,val in cfg["ssh_keys"].items(): |