diff options
author | Juerg Haefliger <juergh@gmail.com> | 2013-06-25 08:51:21 +0200 |
---|---|---|
committer | Juerg Haefliger <juergh@gmail.com> | 2013-06-25 08:51:21 +0200 |
commit | e05e747a7293f991843ca4b7ba5e0736cb5f043f (patch) | |
tree | 5c67e33b508680c16e08fab578b289c28c1b12a6 /cloudinit/distros/__init__.py | |
parent | ff4e9912bde07fb88de90f2dda2e8657ef779679 (diff) | |
download | vyos-cloud-init-e05e747a7293f991843ca4b7ba5e0736cb5f043f.tar.gz vyos-cloud-init-e05e747a7293f991843ca4b7ba5e0736cb5f043f.zip |
Add a SLES distro handler
Diffstat (limited to 'cloudinit/distros/__init__.py')
-rw-r--r-- | cloudinit/distros/__init__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index c5990960..ef5db86b 100644 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -3,11 +3,13 @@ # Copyright (C) 2012 Canonical Ltd. # Copyright (C) 2012, 2013 Hewlett-Packard Development Company, L.P. # Copyright (C) 2012 Yahoo! Inc. +# Copyright (C) 2013 SUSE LLC # # Author: Scott Moser <scott.moser@canonical.com> # Author: Juerg Haefliger <juerg.haefliger@hp.com> # Author: Joshua Harlow <harlowja@yahoo-inc.com> # Author: Ben Howard <ben.howard@canonical.com> +# Author: Robert Schweikert <rjschwei@suse.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3, as @@ -38,7 +40,8 @@ from cloudinit.distros.parsers import hosts OSFAMILIES = { 'debian': ['debian', 'ubuntu'], - 'redhat': ['fedora', 'rhel'] + 'redhat': ['fedora', 'rhel'], + 'suse': ['sles'] } LOG = logging.getLogger(__name__) |