diff options
author | Ćukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> | 2017-04-18 12:27:57 +0200 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2017-04-24 08:23:24 +0000 |
commit | 473ad6fbfe0b9c3b362b530492928303f2b4c7f3 (patch) | |
tree | 8a90733041edb1bdb2c4523a1bb85a8a60b86018 /azurelinuxagent/common/osutil/factory.py | |
parent | 83be006e288c58a46f5b76c29b6886c1f417d88c (diff) | |
download | vyos-walinuxagent-473ad6fbfe0b9c3b362b530492928303f2b4c7f3.tar.gz vyos-walinuxagent-473ad6fbfe0b9c3b362b530492928303f2b4c7f3.zip |
Import patches-unapplied version 2.2.9-0ubuntu1 to ubuntu/zesty-proposed
Imported using git-ubuntu import.
Changelog parent: 83be006e288c58a46f5b76c29b6886c1f417d88c
New changelog entries:
* New upstream release (LP: #1683521).
Diffstat (limited to 'azurelinuxagent/common/osutil/factory.py')
-rw-r--r-- | azurelinuxagent/common/osutil/factory.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/azurelinuxagent/common/osutil/factory.py b/azurelinuxagent/common/osutil/factory.py index acd7f6e..eee9f97 100644 --- a/azurelinuxagent/common/osutil/factory.py +++ b/azurelinuxagent/common/osutil/factory.py @@ -76,6 +76,9 @@ def get_osutil(distro_name=DISTRO_NAME, else: return RedhatOSUtil() + elif distro_name == "euleros": + return RedhatOSUtil() + elif distro_name == "freebsd": return FreeBSDOSUtil() |