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/net | |
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/net')
-rw-r--r-- | cloudinit/net/sysconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py index 7b8e4da7..ef4543b4 100644 --- a/cloudinit/net/sysconfig.py +++ b/cloudinit/net/sysconfig.py @@ -19,7 +19,7 @@ from .network_state import ( LOG = logging.getLogger(__name__) KNOWN_DISTROS = ['almalinux', 'centos', 'cloudlinux', 'eurolinux', 'fedora', - 'rhel', 'rocky', 'suse', 'virtuozzo'] + 'openEuler', 'rhel', 'rocky', 'suse', 'virtuozzo'] NM_CFG_FILE = "/etc/NetworkManager/NetworkManager.conf" |