summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2011-08-22 22:56:45 -0400
committerScott Moser <smoser@ubuntu.com>2011-08-22 22:56:45 -0400
commit0b2656d39db427311266cee5b2ee013de2e56225 (patch)
tree0df11642997d4231bd309e6ac67e1a65840b91f2
parent3e417ab92486129f00902834d4d6926f91828737 (diff)
downloadvyos-cloud-init-0b2656d39db427311266cee5b2ee013de2e56225.tar.gz
vyos-cloud-init-0b2656d39db427311266cee5b2ee013de2e56225.zip
fix for syntax error around ecdsa changes
-rw-r--r--cloudinit/CloudConfig/cc_ssh.py4
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():