hostname - Add Manjaro Linux distribution (#64810)
* Add Manjaro Linux distribution
This commit is contained in:
parent
e0373a73a8
commit
a75a79b84c
2 changed files with 8 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- hostname - make module work on Manjaro Linux (https://github.com/ansible/ansible/issues/61382)
|
|
@ -628,6 +628,12 @@ class ArchARMHostname(Hostname):
|
|||
strategy_class = SystemdStrategy
|
||||
|
||||
|
||||
class ManjaroHostname(Hostname):
|
||||
platform = 'Linux'
|
||||
distribution = 'Manjaro'
|
||||
strategy_class = SystemdStrategy
|
||||
|
||||
|
||||
class RHELHostname(Hostname):
|
||||
platform = 'Linux'
|
||||
distribution = 'Redhat'
|
||||
|
|
Loading…
Reference in a new issue