From ac0dedda72d605a2240ee99d05a5cecbd25cd80e Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Fri, 19 Feb 2021 04:24:36 +1300 Subject: [PATCH] hostname - add Almalinux support (#73619) --- changelogs/fragments/73619-hostname-almalinux-support.yml | 2 ++ lib/ansible/modules/hostname.py | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 changelogs/fragments/73619-hostname-almalinux-support.yml diff --git a/changelogs/fragments/73619-hostname-almalinux-support.yml b/changelogs/fragments/73619-hostname-almalinux-support.yml new file mode 100644 index 00000000000..99e5d809526 --- /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 3405f870b5e..dc775547a98 100644 --- a/lib/ansible/modules/hostname.py +++ b/lib/ansible/modules/hostname.py @@ -773,6 +773,12 @@ class ArchARMHostname(Hostname): strategy_class = SystemdStrategy +class AlmaLinuxHostname(Hostname): + platform = 'Linux' + distribution = 'Almalinux' + strategy_class = SystemdStrategy + + class ManjaroHostname(Hostname): platform = 'Linux' distribution = 'Manjaro'