hostname - add Almalinux support (#73619)

This commit is contained in:
Aaron Guise 2021-02-19 04:24:36 +13:00 committed by GitHub
parent ccbfdec334
commit ac0dedda72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,2 @@
bugfixes:
- hostname - add Almalinux support (https://github.com/ansible/ansible/pull/73619)

View File

@ -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'