diff options
author | Robert Schweikert <rjschwei@suse.com> | 2017-08-25 11:13:58 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-08-30 13:39:47 -0400 |
commit | cbda576a7bbf846710ad55940bf8ca1f2d2194b9 (patch) | |
tree | 3d9eb6e4957735605cc294743f6b709cd44c42a7 /cloudinit/config | |
parent | 44529c1de0098ccd684b46b0bc18d48312c4097c (diff) | |
download | vyos-cloud-init-cbda576a7bbf846710ad55940bf8ca1f2d2194b9.tar.gz vyos-cloud-init-cbda576a7bbf846710ad55940bf8ca1f2d2194b9.zip |
suse: Add support for openSUSE and return SLES to a working state.
This gets initial opensuse and SLES support back to a working state.
Still missing is more complete network file writing and unit tests.
Diffstat (limited to 'cloudinit/config')
-rw-r--r-- | cloudinit/config/cc_resolv_conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_resolv_conf.py b/cloudinit/config/cc_resolv_conf.py index 2548d1f1..9812562a 100644 --- a/cloudinit/config/cc_resolv_conf.py +++ b/cloudinit/config/cc_resolv_conf.py @@ -55,7 +55,7 @@ LOG = logging.getLogger(__name__) frequency = PER_INSTANCE -distros = ['fedora', 'rhel', 'sles'] +distros = ['fedora', 'opensuse', 'rhel', 'sles'] def generate_resolv_conf(template_fn, params, target_fname="/etc/resolv.conf"): |