summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/fragments/73619-hostname-almalinux-support.yml2
-rw-r--r--lib/ansible/modules/hostname.py6
2 files changed, 8 insertions, 0 deletions
diff --git a/changelogs/fragments/73619-hostname-almalinux-support.yml b/changelogs/fragments/73619-hostname-almalinux-support.yml
new file mode 100644
index 0000000000..99e5d80952
--- /dev/null
+++ b/changelogs/fragments/73619-hostname-almalinux-support.yml
@@ -0,0 +1,2 @@
+bugfixes:
+ - hostname - add Almalinux support (https://github.com/ansible/ansible/pull/73619) \ No newline at end of file
diff --git a/lib/ansible/modules/hostname.py b/lib/ansible/modules/hostname.py
index ab99045a58..f27e27ea80 100644
--- a/lib/ansible/modules/hostname.py
+++ b/lib/ansible/modules/hostname.py
@@ -632,6 +632,12 @@ class ArchARMHostname(Hostname):
strategy_class = SystemdStrategy
+class AlmaLinuxHostname(Hostname):
+ platform = 'Linux'
+ distribution = 'Almalinux'
+ strategy_class = SystemdStrategy
+
+
class ManjaroHostname(Hostname):
platform = 'Linux'
distribution = 'Manjaro'