hostname - add Rocky Linux support (#74545)

pull/74574/head
Louis Abel 5 years ago committed by GitHub
parent 728e43bc59
commit 2d41e5f99a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
bugfixes:
- hostname - Add Rocky Linux support

@ -1001,6 +1001,12 @@ class PopHostname(Hostname):
strategy_class = DebianStrategy
class RockyHostname(Hostname):
platform = 'Linux'
distribution = 'Rocky'
strategy_class = SystemdStrategy
def main():
module = AnsibleModule(
argument_spec=dict(

Loading…
Cancel
Save