diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-03-05 12:26:26 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-03-05 12:26:26 -0500 |
commit | d05f1b00e2498343c03ba2de543990fffde8a02f (patch) | |
tree | 275d316f5fb4708be434cb1e4901226749f31eb9 | |
parent | 46da1b83fba8d1e70dc58dbbf18697216b1eb1e3 (diff) | |
download | vyos-cloud-init-d05f1b00e2498343c03ba2de543990fffde8a02f.tar.gz vyos-cloud-init-d05f1b00e2498343c03ba2de543990fffde8a02f.zip |
do not raise exception on non-existant channel.ini file
-rw-r--r-- | cloudinit/config/cc_snappy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_snappy.py b/cloudinit/config/cc_snappy.py index 32fbc9f6..8d73dca3 100644 --- a/cloudinit/config/cc_snappy.py +++ b/cloudinit/config/cc_snappy.py @@ -84,7 +84,7 @@ def system_is_snappy(): # channel.ini is configparser loadable. # snappy will move to using /etc/system-image/config.d/*.ini # this is certainly not a perfect test, but good enough for now. - content = util.load_file("/etc/system-image/channel.ini") + content = util.load_file("/etc/system-image/channel.ini", quiet=True) if 'ubuntu-core' in content.lower(): return True if os.path.isdir("/etc/system-image/config.d/"): |