diff options
author | harlowja <harlowja@virtualbox.rhel> | 2012-06-21 08:38:12 -0700 |
---|---|---|
committer | harlowja <harlowja@virtualbox.rhel> | 2012-06-21 08:38:12 -0700 |
commit | f1cab0d88cbcfa7eaa698db7dcc252bb6543d6c0 (patch) | |
tree | 48ecd1dc9aacdd353d2d40e8617e40b87dd47288 /bin/cloud-init | |
parent | f7e638f6f58188cd4be1921cb045608f3c00d9c4 (diff) | |
download | vyos-cloud-init-f1cab0d88cbcfa7eaa698db7dcc252bb6543d6c0.tar.gz vyos-cloud-init-f1cab0d88cbcfa7eaa698db7dcc252bb6543d6c0.zip |
1. Move all info() logging methods to debug()
2. Adjust comment on sources list from depends
3. For the /etc/timezone 'writing', add a header that says created by cloud-init
Diffstat (limited to 'bin/cloud-init')
-rwxr-xr-x | bin/cloud-init | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/cloud-init b/bin/cloud-init index a2f15c4b..d193272e 100755 --- a/bin/cloud-init +++ b/bin/cloud-init @@ -73,8 +73,7 @@ def welcome(action): } welcome_msg = "%s" % (templater.render_string(msg, tpl_params)) sys.stderr.write("%s\n" % (welcome_msg)) - sys.stderr.flush() - LOG.info(welcome_msg) + LOG.debug(welcome_msg) def extract_fns(args): |