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/config | |
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/config')
-rw-r--r-- | cloudinit/config/cc_ntp.py | 4 | ||||
-rw-r--r-- | cloudinit/config/cc_yum_add_repo.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cloudinit/config/cc_ntp.py b/cloudinit/config/cc_ntp.py index e183993f..41c278ff 100644 --- a/cloudinit/config/cc_ntp.py +++ b/cloudinit/config/cc_ntp.py @@ -24,8 +24,8 @@ LOG = logging.getLogger(__name__) frequency = PER_INSTANCE NTP_CONF = '/etc/ntp.conf' NR_POOL_SERVERS = 4 -distros = ['alpine', 'centos', 'debian', 'fedora', 'opensuse', 'rhel', - 'sles', 'ubuntu'] +distros = ['almalinux', 'alpine', 'centos', 'debian', 'fedora', 'opensuse', + 'rhel', 'sles', 'ubuntu'] NTP_CLIENT_CONFIG = { 'chrony': { diff --git a/cloudinit/config/cc_yum_add_repo.py b/cloudinit/config/cc_yum_add_repo.py index 01fe683c..db513ed7 100644 --- a/cloudinit/config/cc_yum_add_repo.py +++ b/cloudinit/config/cc_yum_add_repo.py @@ -18,7 +18,7 @@ entry, the config entry will be skipped. **Module frequency:** per always -**Supported distros:** centos, fedora, rhel +**Supported distros:** almalinux, centos, fedora, rhel **Config keys**:: @@ -36,7 +36,7 @@ from configparser import ConfigParser from cloudinit import util -distros = ['centos', 'fedora', 'rhel'] +distros = ['almalinux', 'centos', 'fedora', 'rhel'] def _canonicalize_id(repo_id): |