diff options
author | Andrew Lukoshko <andrew.lukoshko@gmail.com> | 2021-05-08 00:31:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 16:31:14 -0500 |
commit | 8cf40a73646a9448746fc4043c6410ae92172e7c (patch) | |
tree | 1f807d522ce7ebe84e295697310a63cb86651498 /cloudinit/util.py | |
parent | 13877549527812959f59e4add685bc42d350edd8 (diff) | |
download | vyos-cloud-init-8cf40a73646a9448746fc4043c6410ae92172e7c.tar.gz vyos-cloud-init-8cf40a73646a9448746fc4043c6410ae92172e7c.zip |
Add AlmaLinux OS support (#872)
AlmaLinux OS is RHEL-compatible so all the changes needed are trivial.
Diffstat (limited to 'cloudinit/util.py')
-rw-r--r-- | cloudinit/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/util.py b/cloudinit/util.py index 4e0a72db..fdea1181 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -521,8 +521,8 @@ def system_info(): if system == "linux": linux_dist = info['dist'][0].lower() if linux_dist in ( - 'alpine', 'arch', 'centos', 'debian', 'fedora', 'rhel', - 'suse'): + 'almalinux', 'alpine', 'arch', 'centos', 'debian', 'fedora', + 'rhel', 'suse'): var = linux_dist elif linux_dist in ('ubuntu', 'linuxmint', 'mint'): var = 'ubuntu' |