diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-01-26 17:10:32 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-01-26 17:10:32 -0500 |
commit | 120a1a17420e41640fbc6d4d0b3bb35563f67fb1 (patch) | |
tree | 4762d7da1795861cd7dddbca1c99c1d03effe7cf /cloud-init.py | |
parent | e07de49c95955b194f12a997db10689f4c421106 (diff) | |
download | vyos-cloud-init-120a1a17420e41640fbc6d4d0b3bb35563f67fb1.tar.gz vyos-cloud-init-120a1a17420e41640fbc6d4d0b3bb35563f67fb1.zip |
make cloud-init's warning more obviously a warning (prepend WARN)
Diffstat (limited to 'cloud-init.py')
-rwxr-xr-x | cloud-init.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud-init.py b/cloud-init.py index 0902d966..c9c03b3f 100755 --- a/cloud-init.py +++ b/cloud-init.py @@ -29,7 +29,7 @@ import logging import errno def warn(wstr): - sys.stderr.write(wstr) + sys.stderr.write("WARN:%s" % wstr) def main(): cmds = ( "start", "start-local" ) |