2013-06-06 20:54:35 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
2013-06-08 20:18:31 +02:00
|
|
|
module: redhat_subscription
|
2013-06-06 22:30:06 +02:00
|
|
|
short_description: Manage Red Hat Network registration and subscriptions using the C(subscription-manager) command
|
2013-06-06 20:54:35 +02:00
|
|
|
description:
|
2013-06-06 22:30:06 +02:00
|
|
|
- Manage registration and subscription to the Red Hat Network entitlement platform.
|
2013-06-07 01:21:18 +02:00
|
|
|
version_added: "1.2"
|
2013-06-06 20:54:35 +02:00
|
|
|
author: James Laska
|
|
|
|
notes:
|
2013-06-07 01:21:18 +02:00
|
|
|
- In order to register a system, subscription-manager requires either a username and password, or an activationkey.
|
2013-06-06 20:54:35 +02:00
|
|
|
requirements:
|
2013-06-06 22:30:06 +02:00
|
|
|
- subscription-manager
|
2013-06-06 20:54:35 +02:00
|
|
|
options:
|
2013-06-06 22:30:06 +02:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- whether to register and subscribe (C(present)), or unregister (C(absent)) a system
|
|
|
|
required: false
|
|
|
|
choices: [ "present", "absent" ]
|
|
|
|
default: "present"
|
2013-06-06 20:54:35 +02:00
|
|
|
username:
|
2013-06-07 01:21:18 +02:00
|
|
|
description:
|
2013-06-06 22:30:06 +02:00
|
|
|
- Red Hat Network username
|
2013-06-07 01:21:18 +02:00
|
|
|
required: False
|
2013-06-06 20:54:35 +02:00
|
|
|
default: null
|
|
|
|
password:
|
|
|
|
description:
|
2013-06-06 22:30:06 +02:00
|
|
|
- Red Hat Network password
|
2013-06-07 01:21:18 +02:00
|
|
|
required: False
|
2013-06-06 20:54:35 +02:00
|
|
|
default: null
|
|
|
|
server_hostname:
|
|
|
|
description:
|
2013-06-06 22:30:06 +02:00
|
|
|
- Specify an alternative Red Hat Network server
|
2013-06-07 01:21:18 +02:00
|
|
|
required: False
|
2013-06-06 22:30:06 +02:00
|
|
|
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
2013-06-06 20:54:35 +02:00
|
|
|
server_insecure:
|
|
|
|
description:
|
2013-06-06 22:30:06 +02:00
|
|
|
- Allow traffic over insecure http
|
2013-06-07 01:21:18 +02:00
|
|
|
required: False
|
2013-06-06 22:30:06 +02:00
|
|
|
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
2013-06-06 20:54:35 +02:00
|
|
|
rhsm_baseurl:
|
|
|
|
description:
|
|
|
|
- Specify CDN baseurl
|
2013-06-07 01:21:18 +02:00
|
|
|
required: False
|
2013-06-06 22:30:06 +02:00
|
|
|
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
2013-06-06 20:54:35 +02:00
|
|
|
autosubscribe:
|
|
|
|
description:
|
2013-06-07 01:21:18 +02:00
|
|
|
- Upon successful registration, auto-consume available subscriptions
|
|
|
|
required: False
|
|
|
|
default: False
|
2013-06-06 20:54:35 +02:00
|
|
|
activationkey:
|
|
|
|
description:
|
|
|
|
- supply an activation key for use with registration
|
2013-06-07 01:21:18 +02:00
|
|
|
required: False
|
2013-06-06 20:54:35 +02:00
|
|
|
default: null
|
|
|
|
pool:
|
|
|
|
description:
|
2013-06-07 01:21:18 +02:00
|
|
|
- Specify a subscription pool name to consume. Regular expressions accepted.
|
|
|
|
required: False
|
2013-06-06 20:54:35 +02:00
|
|
|
default: '^$'
|
2013-06-14 11:53:43 +02:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Register as user (joe_user) with password (somepass) and auto-subscribe to available content.
|
|
|
|
- redhat_subscription: action=register username=joe_user password=somepass autosubscribe=true
|
|
|
|
|
|
|
|
# Register with activationkey (1-222333444) and consume subscriptions matching
|
|
|
|
# the names (Red hat Enterprise Server) and (Red Hat Virtualization)
|
|
|
|
- redhat_subscription: action=register
|
|
|
|
activationkey=1-222333444
|
|
|
|
pool='^(Red Hat Enterprise Server|Red Hat Virtualization)$'
|
2013-06-06 20:54:35 +02:00
|
|
|
'''
|
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import types
|
|
|
|
import ConfigParser
|
|
|
|
import shlex
|
|
|
|
|
|
|
|
|
2014-03-10 22:11:24 +01:00
|
|
|
class RegistrationBase(object):
|
|
|
|
def __init__(self, module, username=None, password=None):
|
|
|
|
self.module = module
|
2013-06-07 20:07:00 +02:00
|
|
|
self.username = username
|
|
|
|
self.password = password
|
|
|
|
|
|
|
|
def configure(self):
|
|
|
|
raise NotImplementedError("Must be implemented by a sub-class")
|
|
|
|
|
|
|
|
def enable(self):
|
|
|
|
# Remove any existing redhat.repo
|
|
|
|
redhat_repo = '/etc/yum.repos.d/redhat.repo'
|
|
|
|
if os.path.isfile(redhat_repo):
|
|
|
|
os.unlink(redhat_repo)
|
|
|
|
|
|
|
|
def register(self):
|
|
|
|
raise NotImplementedError("Must be implemented by a sub-class")
|
|
|
|
|
|
|
|
def unregister(self):
|
|
|
|
raise NotImplementedError("Must be implemented by a sub-class")
|
|
|
|
|
|
|
|
def unsubscribe(self):
|
|
|
|
raise NotImplementedError("Must be implemented by a sub-class")
|
|
|
|
|
|
|
|
def update_plugin_conf(self, plugin, enabled=True):
|
|
|
|
plugin_conf = '/etc/yum/pluginconf.d/%s.conf' % plugin
|
|
|
|
if os.path.isfile(plugin_conf):
|
|
|
|
cfg = ConfigParser.ConfigParser()
|
|
|
|
cfg.read([plugin_conf])
|
|
|
|
if enabled:
|
|
|
|
cfg.set('main', 'enabled', 1)
|
|
|
|
else:
|
|
|
|
cfg.set('main', 'enabled', 0)
|
|
|
|
fd = open(plugin_conf, 'rwa+')
|
|
|
|
cfg.write(fd)
|
|
|
|
fd.close()
|
|
|
|
|
|
|
|
def subscribe(self, **kwargs):
|
|
|
|
raise NotImplementedError("Must be implemented by a sub-class")
|
|
|
|
|
|
|
|
|
|
|
|
class Rhsm(RegistrationBase):
|
2014-03-10 22:11:24 +01:00
|
|
|
def __init__(self, module, username=None, password=None):
|
|
|
|
RegistrationBase.__init__(self, module, username, password)
|
2013-06-07 20:07:00 +02:00
|
|
|
self.config = self._read_config()
|
2014-03-10 22:11:24 +01:00
|
|
|
self.module = module
|
2013-06-07 20:07:00 +02:00
|
|
|
|
2013-06-07 20:15:06 +02:00
|
|
|
def _read_config(self, rhsm_conf='/etc/rhsm/rhsm.conf'):
|
2013-06-07 20:07:00 +02:00
|
|
|
'''
|
|
|
|
Load RHSM configuration from /etc/rhsm/rhsm.conf.
|
|
|
|
Returns:
|
|
|
|
* ConfigParser object
|
|
|
|
'''
|
|
|
|
|
|
|
|
# Read RHSM defaults ...
|
|
|
|
cp = ConfigParser.ConfigParser()
|
2013-06-07 20:15:06 +02:00
|
|
|
cp.read(rhsm_conf)
|
2013-06-07 20:07:00 +02:00
|
|
|
|
|
|
|
# Add support for specifying a default value w/o having to standup some configuration
|
|
|
|
# Yeah, I know this should be subclassed ... but, oh well
|
|
|
|
def get_option_default(self, key, default=''):
|
|
|
|
sect, opt = key.split('.', 1)
|
|
|
|
if self.has_section(sect) and self.has_option(sect, opt):
|
|
|
|
return self.get(sect, opt)
|
|
|
|
else:
|
|
|
|
return default
|
|
|
|
|
|
|
|
cp.get_option = types.MethodType(get_option_default, cp, ConfigParser.ConfigParser)
|
|
|
|
|
|
|
|
return cp
|
|
|
|
|
|
|
|
def enable(self):
|
|
|
|
'''
|
|
|
|
Enable the system to receive updates from subscription-manager.
|
|
|
|
This involves updating affected yum plugins and removing any
|
|
|
|
conflicting yum repositories.
|
|
|
|
'''
|
|
|
|
RegistrationBase.enable(self)
|
|
|
|
self.update_plugin_conf('rhnplugin', False)
|
|
|
|
self.update_plugin_conf('subscription-manager', True)
|
|
|
|
|
|
|
|
def configure(self, **kwargs):
|
|
|
|
'''
|
|
|
|
Configure the system as directed for registration with RHN
|
|
|
|
Raises:
|
|
|
|
* Exception - if error occurs while running command
|
|
|
|
'''
|
|
|
|
args = ['subscription-manager', 'config']
|
|
|
|
|
|
|
|
# Pass supplied **kwargs as parameters to subscription-manager. Ignore
|
|
|
|
# non-configuration parameters and replace '_' with '.'. For example,
|
|
|
|
# 'server_hostname' becomes '--system.hostname'.
|
|
|
|
for k,v in kwargs.items():
|
|
|
|
if re.search(r'^(system|rhsm)_', k):
|
|
|
|
args.append('--%s=%s' % (k.replace('_','.'), v))
|
2014-03-10 22:11:24 +01:00
|
|
|
|
|
|
|
self.module.run_command(args, check_rc=True)
|
2013-06-07 20:07:00 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def is_registered(self):
|
|
|
|
'''
|
|
|
|
Determine whether the current system
|
|
|
|
Returns:
|
|
|
|
* Boolean - whether the current system is currently registered to
|
|
|
|
RHN.
|
|
|
|
'''
|
|
|
|
# Quick version...
|
|
|
|
if False:
|
|
|
|
return os.path.isfile('/etc/pki/consumer/cert.pem') and \
|
|
|
|
os.path.isfile('/etc/pki/consumer/key.pem')
|
|
|
|
|
|
|
|
args = ['subscription-manager', 'identity']
|
2014-03-10 22:11:24 +01:00
|
|
|
rc, stdout, stderr = self.module.run_command(args, check_rc=False)
|
|
|
|
if rc == 0:
|
2013-06-07 20:07:00 +02:00
|
|
|
return True
|
2014-03-10 22:11:24 +01:00
|
|
|
else:
|
|
|
|
return False
|
2013-06-07 20:07:00 +02:00
|
|
|
|
|
|
|
def register(self, username, password, autosubscribe, activationkey):
|
|
|
|
'''
|
|
|
|
Register the current system to the provided RHN server
|
|
|
|
Raises:
|
|
|
|
* Exception - if error occurs while running command
|
|
|
|
'''
|
|
|
|
args = ['subscription-manager', 'register']
|
|
|
|
|
|
|
|
# Generate command arguments
|
|
|
|
if activationkey:
|
|
|
|
args.append('--activationkey "%s"' % activationkey)
|
|
|
|
else:
|
|
|
|
if autosubscribe:
|
|
|
|
args.append('--autosubscribe')
|
|
|
|
if username:
|
|
|
|
args.extend(['--username', username])
|
|
|
|
if password:
|
|
|
|
args.extend(['--password', password])
|
|
|
|
|
2014-03-10 22:11:24 +01:00
|
|
|
rc, stderr, stdout = self.module.run_command(args, check_rc=True)
|
2013-06-07 20:07:00 +02:00
|
|
|
|
|
|
|
def unsubscribe(self):
|
|
|
|
'''
|
|
|
|
Unsubscribe a system from all subscribed channels
|
|
|
|
Raises:
|
|
|
|
* Exception - if error occurs while running command
|
|
|
|
'''
|
|
|
|
args = ['subscription-manager', 'unsubscribe', '--all']
|
2014-03-10 22:11:24 +01:00
|
|
|
rc, stderr, stdout = self.module.run_command(args, check_rc=True)
|
2013-06-07 20:07:00 +02:00
|
|
|
|
|
|
|
def unregister(self):
|
|
|
|
'''
|
|
|
|
Unregister a currently registered system
|
|
|
|
Raises:
|
|
|
|
* Exception - if error occurs while running command
|
|
|
|
'''
|
|
|
|
args = ['subscription-manager', 'unregister']
|
2014-03-10 22:11:24 +01:00
|
|
|
rc, stderr, stdout = self.module.run_command(args, check_rc=True)
|
2013-06-07 20:07:00 +02:00
|
|
|
|
|
|
|
def subscribe(self, regexp):
|
|
|
|
'''
|
|
|
|
Subscribe current system to available pools matching the specified
|
|
|
|
regular expression
|
|
|
|
Raises:
|
|
|
|
* Exception - if error occurs while running command
|
|
|
|
'''
|
|
|
|
|
|
|
|
# Available pools ready for subscription
|
2014-03-10 22:11:24 +01:00
|
|
|
available_pools = RhsmPools(self.module)
|
2013-06-07 20:07:00 +02:00
|
|
|
|
|
|
|
for pool in available_pools.filter(regexp):
|
|
|
|
pool.subscribe()
|
|
|
|
|
|
|
|
|
2013-06-06 20:54:35 +02:00
|
|
|
class RhsmPool(object):
|
2013-06-07 20:07:00 +02:00
|
|
|
'''
|
|
|
|
Convenience class for housing subscription information
|
|
|
|
'''
|
2013-07-01 00:54:32 +02:00
|
|
|
|
2014-03-10 22:11:24 +01:00
|
|
|
def __init__(self, module, **kwargs):
|
|
|
|
self.module = module
|
2013-06-06 20:54:35 +02:00
|
|
|
for k,v in kwargs.items():
|
|
|
|
setattr(self, k, v)
|
2013-07-01 00:54:32 +02:00
|
|
|
|
2013-06-06 20:54:35 +02:00
|
|
|
def __str__(self):
|
|
|
|
return str(self.__getattribute__('_name'))
|
2013-07-01 00:54:32 +02:00
|
|
|
|
2013-06-06 20:54:35 +02:00
|
|
|
def subscribe(self):
|
2014-03-10 22:11:24 +01:00
|
|
|
args = "subscription-manager subscribe --pool %s" % self.PoolId
|
|
|
|
rc, stdout, stderr = self.module.run_command(args, check_rc=True)
|
|
|
|
if rc == 0:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
2013-06-06 20:54:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
class RhsmPools(object):
|
|
|
|
"""
|
|
|
|
This class is used for manipulating pools subscriptions with RHSM
|
|
|
|
"""
|
2014-03-10 22:11:24 +01:00
|
|
|
def __init__(self, module):
|
|
|
|
self.module = module
|
2013-06-06 20:54:35 +02:00
|
|
|
self.products = self._load_product_list()
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self.products.__iter__()
|
|
|
|
|
|
|
|
def _load_product_list(self):
|
|
|
|
"""
|
2014-04-29 16:41:05 +02:00
|
|
|
Loads list of all available pools for system in data structure
|
2013-06-06 20:54:35 +02:00
|
|
|
"""
|
2014-03-10 22:11:24 +01:00
|
|
|
args = "subscription-manager list --available"
|
|
|
|
rc, stdout, stderr = self.module.run_command(args, check_rc=True)
|
2013-06-06 20:54:35 +02:00
|
|
|
|
|
|
|
products = []
|
|
|
|
for line in stdout.split('\n'):
|
|
|
|
# Remove leading+trailing whitespace
|
|
|
|
line = line.strip()
|
|
|
|
# An empty line implies the end of a output group
|
|
|
|
if len(line) == 0:
|
|
|
|
continue
|
|
|
|
# If a colon ':' is found, parse
|
|
|
|
elif ':' in line:
|
|
|
|
(key, value) = line.split(':',1)
|
|
|
|
key = key.strip().replace(" ", "") # To unify
|
|
|
|
value = value.strip()
|
|
|
|
if key in ['ProductName', 'SubscriptionName']:
|
|
|
|
# Remember the name for later processing
|
2014-03-10 22:11:24 +01:00
|
|
|
products.append(RhsmPool(self.module, _name=value, key=value))
|
2013-06-06 20:54:35 +02:00
|
|
|
elif products:
|
|
|
|
# Associate value with most recently recorded product
|
|
|
|
products[-1].__setattr__(key, value)
|
|
|
|
# FIXME - log some warning?
|
|
|
|
#else:
|
|
|
|
# warnings.warn("Unhandled subscription key/value: %s/%s" % (key,value))
|
|
|
|
return products
|
|
|
|
|
|
|
|
def filter(self, regexp='^$'):
|
|
|
|
'''
|
|
|
|
Return a list of RhsmPools whose name matches the provided regular expression
|
|
|
|
'''
|
|
|
|
r = re.compile(regexp)
|
|
|
|
for product in self.products:
|
|
|
|
if r.search(product._name):
|
|
|
|
yield product
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
|
|
|
# Load RHSM configuration from file
|
2014-04-01 20:22:29 +02:00
|
|
|
rhn = Rhsm(None)
|
2013-06-06 20:54:35 +02:00
|
|
|
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec = dict(
|
|
|
|
state = dict(default='present', choices=['present', 'absent']),
|
|
|
|
username = dict(default=None, required=False),
|
|
|
|
password = dict(default=None, required=False),
|
2013-06-07 20:07:00 +02:00
|
|
|
server_hostname = dict(default=rhn.config.get_option('server.hostname'), required=False),
|
|
|
|
server_insecure = dict(default=rhn.config.get_option('server.insecure'), required=False),
|
|
|
|
rhsm_baseurl = dict(default=rhn.config.get_option('rhsm.baseurl'), required=False),
|
2013-06-06 20:54:35 +02:00
|
|
|
autosubscribe = dict(default=False, type='bool'),
|
|
|
|
activationkey = dict(default=None, required=False),
|
|
|
|
pool = dict(default='^$', required=False, type='str'),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2014-03-10 22:11:24 +01:00
|
|
|
rhn.module = module
|
2013-06-06 20:54:35 +02:00
|
|
|
state = module.params['state']
|
|
|
|
username = module.params['username']
|
|
|
|
password = module.params['password']
|
|
|
|
server_hostname = module.params['server_hostname']
|
|
|
|
server_insecure = module.params['server_insecure']
|
|
|
|
rhsm_baseurl = module.params['rhsm_baseurl']
|
|
|
|
autosubscribe = module.params['autosubscribe'] == True
|
|
|
|
activationkey = module.params['activationkey']
|
|
|
|
pool = module.params['pool']
|
|
|
|
|
|
|
|
# Ensure system is registered
|
|
|
|
if state == 'present':
|
|
|
|
|
|
|
|
# Check for missing parameters ...
|
|
|
|
if not (activationkey or username or password):
|
|
|
|
module.fail_json(msg="Missing arguments, must supply an activationkey (%s) or username (%s) and password (%s)" % (activationkey, username, password))
|
|
|
|
if not activationkey and not (username and password):
|
|
|
|
module.fail_json(msg="Missing arguments, If registering without an activationkey, must supply username or password")
|
|
|
|
|
|
|
|
# Register system
|
2013-06-07 20:07:00 +02:00
|
|
|
if rhn.is_registered:
|
2013-06-06 20:54:35 +02:00
|
|
|
module.exit_json(changed=False, msg="System already registered.")
|
|
|
|
else:
|
|
|
|
try:
|
2013-06-07 20:07:00 +02:00
|
|
|
rhn.enable()
|
|
|
|
rhn.configure(**module.params)
|
|
|
|
rhn.register(username, password, autosubscribe, activationkey)
|
|
|
|
rhn.subscribe(pool)
|
2014-05-23 21:44:01 +02:00
|
|
|
except Exception, e:
|
2013-06-06 20:54:35 +02:00
|
|
|
module.fail_json(msg="Failed to register with '%s': %s" % (server_hostname, e))
|
|
|
|
else:
|
|
|
|
module.exit_json(changed=True, msg="System successfully registered to '%s'." % server_hostname)
|
|
|
|
|
|
|
|
# Ensure system is *not* registered
|
|
|
|
if state == 'absent':
|
2013-06-07 20:07:00 +02:00
|
|
|
if not rhn.is_registered:
|
2013-06-06 20:54:35 +02:00
|
|
|
module.exit_json(changed=False, msg="System already unregistered.")
|
|
|
|
else:
|
|
|
|
try:
|
2013-06-07 20:07:00 +02:00
|
|
|
rhn.unsubscribe()
|
|
|
|
rhn.unregister()
|
2014-05-23 21:44:01 +02:00
|
|
|
except Exception, e:
|
2013-06-06 20:54:35 +02:00
|
|
|
module.fail_json(msg="Failed to unregister: %s" % e)
|
|
|
|
else:
|
|
|
|
module.exit_json(changed=True, msg="System successfully unregistered from %s." % server_hostname)
|
|
|
|
|
|
|
|
|
2013-12-02 21:11:23 +01:00
|
|
|
# import module snippets
|
|
|
|
from ansible.module_utils.basic import *
|
2013-06-06 20:54:35 +02:00
|
|
|
main()
|