Add support for Linaro distribution in hostname module
This commit is contained in:
parent
aaa74352a7
commit
8051e12490
1 changed files with 7 additions and 2 deletions
|
@ -150,7 +150,7 @@ class DebianStrategy(GenericStrategy):
|
|||
try:
|
||||
open(self.HOSTNAME_FILE, "a").write("")
|
||||
except IOError, err:
|
||||
self.module.fail_json(msg="failed to write file: %s" %
|
||||
self.module.fail_json(msg="failed to write file: %s" %
|
||||
str(err))
|
||||
try:
|
||||
f = open(self.HOSTNAME_FILE)
|
||||
|
@ -183,6 +183,11 @@ class UbuntuHostname(Hostname):
|
|||
distribution = 'Ubuntu'
|
||||
strategy_class = DebianStrategy
|
||||
|
||||
class LinaroHostname(Hostname):
|
||||
platform = 'Linux'
|
||||
distribution = 'Linaro'
|
||||
strategy_class = DebianStrategy
|
||||
|
||||
# ===========================================
|
||||
|
||||
class RedHatStrategy(GenericStrategy):
|
||||
|
@ -260,7 +265,7 @@ class ScientificLinuxHostname(Hostname):
|
|||
platform = 'Linux'
|
||||
distribution = 'Scientific'
|
||||
strategy_class = RedHatStrategy
|
||||
|
||||
|
||||
# ===========================================
|
||||
|
||||
class FedoraStrategy(GenericStrategy):
|
||||
|
|
Loading…
Reference in a new issue