From 09cec0837a20f6cfafa520aa0ff2e484e1fd9c01 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Tue, 28 Aug 2012 14:07:38 -0400 Subject: fix busted cc_ssh_import_id --- cloudinit/config/cc_ssh_import_id.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cloudinit/config/cc_ssh_import_id.py b/cloudinit/config/cc_ssh_import_id.py index 1625c8e0..c5f07376 100644 --- a/cloudinit/config/cc_ssh_import_id.py +++ b/cloudinit/config/cc_ssh_import_id.py @@ -57,9 +57,10 @@ def handle(_name, cfg, cloud, log, args): continue try: - import_ssh_ids(ids, user, log) + import_ssh_ids(import_ids, user, log) except Exception as exc: - util.logexc(exc, "ssh-import-id failed for: %s %s" % (user, ids)) + util.logexc(exc, "ssh-import-id failed for: %s %s" % + (user, import_ids)) elist.append(exc) if len(elist): -- cgit v1.2.3