diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-07-28 09:27:26 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-07-28 09:27:26 -0400 |
commit | 6dd505fd02e0933d8770c8932a927940f6a0e025 (patch) | |
tree | 560a6f86a2ca4cbe59e9a07597a92cc56b696181 /cloudinit/config/cc_syslog.py | |
parent | cae9122f88f8369454b03b97a5386d3135941fd9 (diff) | |
download | vyos-cloud-init-6dd505fd02e0933d8770c8932a927940f6a0e025.tar.gz vyos-cloud-init-6dd505fd02e0933d8770c8932a927940f6a0e025.zip |
add support for 'remotes'
Diffstat (limited to 'cloudinit/config/cc_syslog.py')
-rw-r--r-- | cloudinit/config/cc_syslog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_syslog.py b/cloudinit/config/cc_syslog.py index 21a8e8a9..27793f8b 100644 --- a/cloudinit/config/cc_syslog.py +++ b/cloudinit/config/cc_syslog.py @@ -168,7 +168,7 @@ def handle(name, cfg, cloud, log, args): LOG.debug("syslog/remotes_file empty, doing nothing") return - remotes = mycfg.get('remotes_dict', {}) + remotes = mycfg.get('remotes', {}) if remotes and not isinstance(remotes, dict): LOG.warn("syslog/remotes: content is not a dictionary") return |