(cherry picked from commit ac0dedda72
)
Co-authored-by: Aaron Guise <guisea@users.noreply.github.com>
This commit is contained in:
parent
3e95e3c0a0
commit
ebe0ed9331
2 changed files with 8 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- hostname - add Almalinux support (https://github.com/ansible/ansible/pull/73619)
|
|
@ -632,6 +632,12 @@ class ArchARMHostname(Hostname):
|
||||||
strategy_class = SystemdStrategy
|
strategy_class = SystemdStrategy
|
||||||
|
|
||||||
|
|
||||||
|
class AlmaLinuxHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Almalinux'
|
||||||
|
strategy_class = SystemdStrategy
|
||||||
|
|
||||||
|
|
||||||
class ManjaroHostname(Hostname):
|
class ManjaroHostname(Hostname):
|
||||||
platform = 'Linux'
|
platform = 'Linux'
|
||||||
distribution = 'Manjaro'
|
distribution = 'Manjaro'
|
||||||
|
|
Loading…
Reference in a new issue