diff options
author | zhuzaifangxuele <52022596+zhuzaifangxuele@users.noreply.github.com> | 2021-09-14 02:21:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-13 13:21:28 -0500 |
commit | f4c47e3e25d1fb79e2673e37f8fc67750d025be2 (patch) | |
tree | d3fd670589ff11d203afd2973f926cc0bff44120 /cloudinit/distros | |
parent | 2ce857248162957a785af61c135ca8433fdbbcde (diff) | |
download | vyos-cloud-init-f4c47e3e25d1fb79e2673e37f8fc67750d025be2.tar.gz vyos-cloud-init-f4c47e3e25d1fb79e2673e37f8fc67750d025be2.zip |
Support openEuler OS (#1012)
openEuler Homepage: https://www.openeuler.org/en/
Diffstat (limited to 'cloudinit/distros')
-rwxr-xr-x | cloudinit/distros/__init__.py | 2 | ||||
-rw-r--r-- | cloudinit/distros/openEuler.py | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index a0526948..63e78591 100755 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -50,7 +50,7 @@ OSFAMILIES = { 'freebsd': ['freebsd'], 'gentoo': ['gentoo'], 'redhat': ['almalinux', 'amazon', 'centos', 'cloudlinux', 'eurolinux', - 'fedora', 'photon', 'rhel', 'rocky', 'virtuozzo'], + 'fedora', 'openEuler', 'photon', 'rhel', 'rocky', 'virtuozzo'], 'suse': ['opensuse', 'sles'], } diff --git a/cloudinit/distros/openEuler.py b/cloudinit/distros/openEuler.py new file mode 100644 index 00000000..edb3165d --- /dev/null +++ b/cloudinit/distros/openEuler.py @@ -0,0 +1,9 @@ +# This file is part of cloud-init. See LICENSE file for license information. + +from cloudinit.distros import rhel + + +class Distro(rhel.Distro): + pass + +# vi: ts=4 expandtab |