Add alinux hostname module support (#72894)

pull/52229/head
log-e 4 years ago committed by GitHub
parent bc35fbf5de
commit 8f77e95765
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
class AlinuxHostname(Hostname):
platform = 'Linux'
distribution = 'Alinux'
strategy_class = RedHatStrategy
class CoreosHostname(Hostname):
platform = 'Linux'
distribution = 'Coreos'

Loading…
Cancel
Save