diff options
author | Louis Abel <nazunalika@users.noreply.github.com> | 2021-05-25 06:25:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 08:25:41 -0500 |
commit | 7c1d27b8836c266f6db1e179b98ef32effeb750e (patch) | |
tree | 0a7f4897b000ee0c1f7a1b16c5d2b06269fd25fd /config | |
parent | c8db603218dd56123e43857d81f5eae5f66618f1 (diff) | |
download | vyos-cloud-init-7c1d27b8836c266f6db1e179b98ef32effeb750e.tar.gz vyos-cloud-init-7c1d27b8836c266f6db1e179b98ef32effeb750e.zip |
Add Rocky Linux support to cloud-init (#906)
Rocky Linux is a RHEL-compatible distribution so all changes that have
been made should be trivial.
Diffstat (limited to 'config')
-rw-r--r-- | config/cloud.cfg.tmpl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config/cloud.cfg.tmpl b/config/cloud.cfg.tmpl index 8656daa7..2f6c3a7d 100644 --- a/config/cloud.cfg.tmpl +++ b/config/cloud.cfg.tmpl @@ -21,7 +21,8 @@ disable_root: false disable_root: true {% endif %} -{% if variant in ["almalinux", "alpine", "amazon", "centos", "fedora", "rhel"] %} +{% if variant in ["almalinux", "alpine", "amazon", "centos", "fedora", + "rhel", "rocky"] %} mount_default_fields: [~, ~, 'auto', 'defaults,nofail', '0', '2'] {% if variant == "amazon" %} resize_rootfs: noblock @@ -154,7 +155,7 @@ cloud_final_modules: system_info: # This will affect which distro class gets used {% if variant in ["almalinux", "alpine", "amazon", "arch", "centos", "debian", - "fedora", "freebsd", "netbsd", "openbsd", "rhel", + "fedora", "freebsd", "netbsd", "openbsd", "rhel", "rocky", "suse", "ubuntu"] %} distro: {{ variant }} {% else %} @@ -207,7 +208,7 @@ system_info: security: http://ports.ubuntu.com/ubuntu-ports ssh_svcname: ssh {% elif variant in ["almalinux", "alpine", "amazon", "arch", "centos", "fedora", - "rhel", "suse"] %} + "rhel", "rocky", "suse"] %} # Default user name + that default users groups (if added/used) default_user: {% if variant == "amazon" %} |