use different strategy for RHEL >= 7. Fixes 7763
This commit is contained in:
parent
de94863eb1
commit
bd69e9f265
1 changed files with 74 additions and 43 deletions
117
system/hostname
117
system/hostname
|
@ -39,6 +39,22 @@ EXAMPLES = '''
|
||||||
- hostname: name=web01
|
- hostname: name=web01
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
import platform
|
||||||
|
|
||||||
|
|
||||||
|
def get_distribution_version():
|
||||||
|
''' return the distribution version '''
|
||||||
|
if platform.system() == 'Linux':
|
||||||
|
try:
|
||||||
|
distribution_version = platform.linux_distribution()[1]
|
||||||
|
except:
|
||||||
|
# FIXME: MethodMissing, I assume?
|
||||||
|
distribution_version = platform.dist()[1]
|
||||||
|
else:
|
||||||
|
distribution_version = None
|
||||||
|
return distribution_version
|
||||||
|
|
||||||
|
|
||||||
class UnimplementedStrategy(object):
|
class UnimplementedStrategy(object):
|
||||||
def __init__(self, module):
|
def __init__(self, module):
|
||||||
self.module = module
|
self.module = module
|
||||||
|
@ -135,6 +151,7 @@ class GenericStrategy(object):
|
||||||
def set_permanent_hostname(self, name):
|
def set_permanent_hostname(self, name):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
class DebianStrategy(GenericStrategy):
|
class DebianStrategy(GenericStrategy):
|
||||||
|
@ -173,20 +190,6 @@ class DebianStrategy(GenericStrategy):
|
||||||
self.module.fail_json(msg="failed to update hostname: %s" %
|
self.module.fail_json(msg="failed to update hostname: %s" %
|
||||||
str(err))
|
str(err))
|
||||||
|
|
||||||
class DebianHostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Debian'
|
|
||||||
strategy_class = DebianStrategy
|
|
||||||
|
|
||||||
class UbuntuHostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Ubuntu'
|
|
||||||
strategy_class = DebianStrategy
|
|
||||||
|
|
||||||
class LinaroHostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Linaro'
|
|
||||||
strategy_class = DebianStrategy
|
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
|
@ -236,35 +239,6 @@ class RedHatStrategy(GenericStrategy):
|
||||||
self.module.fail_json(msg="failed to update hostname: %s" %
|
self.module.fail_json(msg="failed to update hostname: %s" %
|
||||||
str(err))
|
str(err))
|
||||||
|
|
||||||
class RedHat5Hostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Redhat'
|
|
||||||
strategy_class = RedHatStrategy
|
|
||||||
|
|
||||||
class RedHatServerHostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Red hat enterprise linux server'
|
|
||||||
strategy_class = RedHatStrategy
|
|
||||||
|
|
||||||
class RedHatWorkstationHostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Red hat enterprise linux workstation'
|
|
||||||
strategy_class = RedHatStrategy
|
|
||||||
|
|
||||||
class CentOSHostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Centos'
|
|
||||||
strategy_class = RedHatStrategy
|
|
||||||
|
|
||||||
class AmazonLinuxHostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Amazon'
|
|
||||||
strategy_class = RedHatStrategy
|
|
||||||
|
|
||||||
class ScientificLinuxHostname(Hostname):
|
|
||||||
platform = 'Linux'
|
|
||||||
distribution = 'Scientific'
|
|
||||||
strategy_class = RedHatStrategy
|
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
|
@ -324,6 +298,63 @@ class ArchHostname(Hostname):
|
||||||
distribution = 'Arch'
|
distribution = 'Arch'
|
||||||
strategy_class = FedoraStrategy
|
strategy_class = FedoraStrategy
|
||||||
|
|
||||||
|
class RedHat5Hostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Redhat'
|
||||||
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
class RedHatServerHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Red hat enterprise linux server'
|
||||||
|
if float(get_distribution_version()) >= 7:
|
||||||
|
strategy_class = FedoraStrategy
|
||||||
|
else:
|
||||||
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
class RedHatWorkstationHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Red hat enterprise linux workstation'
|
||||||
|
if float(get_distribution_version()) >= 7:
|
||||||
|
strategy_class = FedoraStrategy
|
||||||
|
else:
|
||||||
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
class CentOSHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Centos'
|
||||||
|
if float(get_distribution_version()) >= 7:
|
||||||
|
strategy_class = FedoraStrategy
|
||||||
|
else:
|
||||||
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
class ScientificLinuxHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Scientific'
|
||||||
|
if float(get_distribution_version()) >= 7:
|
||||||
|
strategy_class = FedoraStrategy
|
||||||
|
else:
|
||||||
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
class AmazonLinuxHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Amazon'
|
||||||
|
strategy_class = RedHatStrategy
|
||||||
|
|
||||||
|
class DebianHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Debian'
|
||||||
|
strategy_class = DebianStrategy
|
||||||
|
|
||||||
|
class UbuntuHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Ubuntu'
|
||||||
|
strategy_class = DebianStrategy
|
||||||
|
|
||||||
|
class LinaroHostname(Hostname):
|
||||||
|
platform = 'Linux'
|
||||||
|
distribution = 'Linaro'
|
||||||
|
strategy_class = DebianStrategy
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in a new issue