diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-06-18 15:41:30 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-06-18 15:41:30 -0400 |
commit | 5dbdf0d1c9cd1c4b3cabc1da9adbe24af5ea339c (patch) | |
tree | dedf647d6fa3e61377f7c74a012abda2f2ac2b61 | |
parent | 8078694fa7a0668b7d9f8681bb350003882b5c49 (diff) | |
download | vyos-cloud-init-5dbdf0d1c9cd1c4b3cabc1da9adbe24af5ea339c.tar.gz vyos-cloud-init-5dbdf0d1c9cd1c4b3cabc1da9adbe24af5ea339c.zip |
remove some debug code
-rw-r--r-- | cloudinit/CloudConfig/cc_ssh_import_id.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig/cc_ssh_import_id.py b/cloudinit/CloudConfig/cc_ssh_import_id.py index cd7202ef..dd4d3184 100644 --- a/cloudinit/CloudConfig/cc_ssh_import_id.py +++ b/cloudinit/CloudConfig/cc_ssh_import_id.py @@ -29,7 +29,6 @@ def handle(name,cfg,cloud,log,args): user = util.get_cfg_option_str(cfg,"user","ubuntu") ids = util.get_cfg_option_list_or_str(cfg,"ssh_import_id",[]) - log.warn("here, args = %s. user = %s ids = %s" % ( args, user, ids )) if len(ids) == 0: return cmd = [ "sudo", "-Hu", user, "ssh-import-lp-id" ] + ids |