diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-02-15 13:49:41 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-02-15 13:49:41 -0500 |
commit | fcefeb469261bf19ffa249ceddf1ca003e520e5d (patch) | |
tree | cd141a52c6172c21b4109aefb19728e7eb9e9334 | |
parent | 53bef29462361c9734359ce95ec5a4b838644d05 (diff) | |
download | vyos-cloud-init-fcefeb469261bf19ffa249ceddf1ca003e520e5d.tar.gz vyos-cloud-init-fcefeb469261bf19ffa249ceddf1ca003e520e5d.zip |
fix update-etc-hosts, 'manage_etc_hosts' is not a boolean, but a string
-rw-r--r-- | cloudinit/CloudConfig/cc_update_etc_hosts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig/cc_update_etc_hosts.py b/cloudinit/CloudConfig/cc_update_etc_hosts.py index 572e6750..6ad2fca8 100644 --- a/cloudinit/CloudConfig/cc_update_etc_hosts.py +++ b/cloudinit/CloudConfig/cc_update_etc_hosts.py @@ -28,7 +28,7 @@ frequency = per_always def handle(_name, cfg, cloud, log, _args): (hostname, fqdn) = util.get_hostname_fqdn(cfg, cloud) - manage_hosts = util.get_cfg_option_bool(cfg, "manage_etc_hosts", False) + manage_hosts = util.get_cfg_option_str(cfg, "manage_etc_hosts", False) if manage_hosts in ("True", "true", True, "template"): # render from template file try: |