Add alinux hostname module support (#72894)
This commit is contained in:
parent
bc35fbf5de
commit
8f77e95765
2 changed files with 8 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- hostname - Fixed an issue where the hostname on the alinux could not be set.
|
|
@ -812,6 +812,12 @@ class CloudlinuxHostname(Hostname):
|
||||||
strategy_class = RedHatStrategy
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
|
||||||
|
class AlinuxHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Alinux'
|
||||||
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
|
||||||
class CoreosHostname(Hostname):
|
class CoreosHostname(Hostname):
|
||||||
platform = 'Linux'
|
platform = 'Linux'
|
||||||
distribution = 'Coreos'
|
distribution = 'Coreos'
|
||||||
|
|
Loading…
Reference in a new issue