hostname - Add Void Linux distribution (#66499)
Add support for Void Linux in hostname module.
This commit is contained in:
parent
bc37ea96d5
commit
450d9c4a04
1 changed files with 6 additions and 0 deletions
|
@ -802,6 +802,12 @@ class OsmcHostname(Hostname):
|
||||||
strategy_class = SystemdStrategy
|
strategy_class = SystemdStrategy
|
||||||
|
|
||||||
|
|
||||||
|
class VoidLinuxHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Void'
|
||||||
|
strategy_class = DebianStrategy
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=dict(
|
argument_spec=dict(
|
||||||
|
|
Loading…
Reference in a new issue