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/distros/__init__.py | |
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/distros/__init__.py')
-rwxr-xr-x | cloudinit/distros/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index 1fd48a7b..807b3ea2 100755 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -35,7 +35,7 @@ OSFAMILIES = { 'redhat': ['centos', 'fedora', 'rhel'], 'gentoo': ['gentoo'], 'freebsd': ['freebsd'], - 'suse': ['sles'], + 'suse': ['opensuse', 'sles'], 'arch': ['arch'], } |