diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-07-01 00:19:49 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-07-01 00:19:49 -0700 |
commit | aa9189e89ec101fba8ca36919a7c800f8b28d5c0 (patch) | |
tree | e81d2709f813c8c48b3c0994496dce06c2c78047 /cloudinit/config/cc_keys_to_console.py | |
parent | 342ffe553574c7662d143d3da76f8f4fb6587983 (diff) | |
download | vyos-cloud-init-aa9189e89ec101fba8ca36919a7c800f8b28d5c0.tar.gz vyos-cloud-init-aa9189e89ec101fba8ca36919a7c800f8b28d5c0.zip |
Add a multi log function that can write to stderr, console and a log debug, useful in certain cases
Diffstat (limited to 'cloudinit/config/cc_keys_to_console.py')
-rw-r--r-- | cloudinit/config/cc_keys_to_console.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cloudinit/config/cc_keys_to_console.py b/cloudinit/config/cc_keys_to_console.py index d4c877f7..da7d5219 100644 --- a/cloudinit/config/cc_keys_to_console.py +++ b/cloudinit/config/cc_keys_to_console.py @@ -29,7 +29,7 @@ frequency = PER_INSTANCE HELPER_TOOL = '/usr/lib/cloud-init/write-ssh-key-fingerprints' -def handle(name, cfg, cloud, log, _args): +def handle(name, cfg, _cloud, log, _args): if not os.path.exists(HELPER_TOOL): log.warn(("Unable to activate module %s," " helper tool not found at %s"), name, HELPER_TOOL) @@ -46,7 +46,7 @@ def handle(name, cfg, cloud, log, _args): cmd.append(','.join(fp_blacklist)) cmd.append(','.join(key_blacklist)) (stdout, _stderr) = util.subp(cmd) - util.write_file(cloud.paths.join(False, '/dev/console'), stdout) + util.multi_log("%s\n" % (stdout.strip()), stderr=False) except: - log.warn("Writing keys to /dev/console failed!") + log.warn("Writing keys to the system console failed!") raise |