hostname - add Almalinux support (#73619)
This commit is contained in:
parent
ccbfdec334
commit
ac0dedda72
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)
|
|
@ -773,6 +773,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