mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Raise an error on unsupported platform/distributions.
This commit is contained in:
parent
ce2b37e2ff
commit
f4ba0e78a4
1 changed files with 25 additions and 1 deletions
|
@ -51,6 +51,30 @@ def log(msg):
|
||||||
syslog.openlog('ansible-%s' % os.path.basename(__file__))
|
syslog.openlog('ansible-%s' % os.path.basename(__file__))
|
||||||
syslog.syslog(syslog.LOG_NOTICE, msg)
|
syslog.syslog(syslog.LOG_NOTICE, msg)
|
||||||
|
|
||||||
|
class UnimplementedStrategy(object):
|
||||||
|
def __init__(self, module):
|
||||||
|
self.module = module
|
||||||
|
|
||||||
|
def get_current_hostname(self):
|
||||||
|
self.unimplemented_error()
|
||||||
|
|
||||||
|
def set_current_hostname(self, name):
|
||||||
|
self.unimplemented_error()
|
||||||
|
|
||||||
|
def get_permanent_hostname(self):
|
||||||
|
self.unimplemented_error()
|
||||||
|
|
||||||
|
def set_permanent_hostname(self, name):
|
||||||
|
self.unimplemented_error()
|
||||||
|
|
||||||
|
def unimplemented_error(self):
|
||||||
|
platform = get_platform()
|
||||||
|
distribution = get_distribution()
|
||||||
|
msg_platform = '%s (%s)' % (platform, distribution) \
|
||||||
|
if distribution is not None else platform
|
||||||
|
self.module.fail_json(
|
||||||
|
msg='hostname module cannot be used on platform %s' % msg_platform)
|
||||||
|
|
||||||
class Hostname(object):
|
class Hostname(object):
|
||||||
"""
|
"""
|
||||||
This is a generic Hostname manipulation class that is subclassed
|
This is a generic Hostname manipulation class that is subclassed
|
||||||
|
@ -63,7 +87,7 @@ class Hostname(object):
|
||||||
|
|
||||||
platform = 'Generic'
|
platform = 'Generic'
|
||||||
distribution = None
|
distribution = None
|
||||||
strategy_class = None
|
strategy_class = UnimplementedStrategy
|
||||||
|
|
||||||
def __new__(cls, *args, **kwargs):
|
def __new__(cls, *args, **kwargs):
|
||||||
return load_platform_subclass(Hostname, args, kwargs)
|
return load_platform_subclass(Hostname, args, kwargs)
|
||||||
|
|
Loading…
Reference in a new issue