Merge pull request #757 from philalex/AnsibleHostname-dev
Add Linuxmint support in hostname module
This commit is contained in:
commit
42ab01711d
1 changed files with 5 additions and 0 deletions
|
@ -410,6 +410,11 @@ class UbuntuHostname(Hostname):
|
||||||
distribution = 'Ubuntu'
|
distribution = 'Ubuntu'
|
||||||
strategy_class = DebianStrategy
|
strategy_class = DebianStrategy
|
||||||
|
|
||||||
|
class LinuxmintHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Linuxmint'
|
||||||
|
strategy_class = DebianStrategy
|
||||||
|
|
||||||
class LinaroHostname(Hostname):
|
class LinaroHostname(Hostname):
|
||||||
platform = 'Linux'
|
platform = 'Linux'
|
||||||
distribution = 'Linaro'
|
distribution = 'Linaro'
|
||||||
|
|
Loading…
Reference in a new issue