From ca9fd7e136952c158771a1f31411f1da7a0e61e8 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Sun, 1 Mar 2015 14:16:44 +0100 Subject: [PATCH] redhat_subscription: add the `org_id` parameter When subscribing a system with an activationkey, it seems (sometimes?) required to pass the "--org " parameter to subscription-manager. Activation Keys can be created through the Red Hat Customer Portal, and a subscription can be attached to those. This makes is easy to register systems without passing username/passwords around. The organisation ID can be retrieved by executing the following command on a registered system (*not* the account number): # subscription-manager identity URL: https://access.redhat.com/management/activation_keys Signed-off-by: Niels de Vos Reviewed-by: Ken Dreyer --- .../modules/packaging/os/redhat_subscription.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/packaging/os/redhat_subscription.py b/lib/ansible/modules/packaging/os/redhat_subscription.py index 9e0d2f6a2ba..2c5f53d4503 100644 --- a/lib/ansible/modules/packaging/os/redhat_subscription.py +++ b/lib/ansible/modules/packaging/os/redhat_subscription.py @@ -54,6 +54,11 @@ options: - supply an activation key for use with registration required: False default: null + org_id: + description: + - Organisation ID to use in conjunction with activationkey + required: False + default: null pool: description: - Specify a subscription pool name to consume. Regular expressions accepted. @@ -197,7 +202,7 @@ class Rhsm(RegistrationBase): else: return False - def register(self, username, password, autosubscribe, activationkey): + def register(self, username, password, autosubscribe, activationkey, org_id): ''' Register the current system to the provided RHN server Raises: @@ -208,6 +213,8 @@ class Rhsm(RegistrationBase): # Generate command arguments if activationkey: args.extend(['--activationkey', activationkey]) + if org_id: + args.extend(['--org', org_id]) else: if autosubscribe: args.append('--autosubscribe') @@ -339,6 +346,7 @@ def main(): rhsm_baseurl = dict(default=rhn.config.get_option('rhsm.baseurl'), required=False), autosubscribe = dict(default=False, type='bool'), activationkey = dict(default=None, required=False), + org_id = dict(default=None, required=False), pool = dict(default='^$', required=False, type='str'), ) ) @@ -352,6 +360,7 @@ def main(): rhsm_baseurl = module.params['rhsm_baseurl'] autosubscribe = module.params['autosubscribe'] == True activationkey = module.params['activationkey'] + org_id = module.params['org_id'] pool = module.params['pool'] # Ensure system is registered @@ -370,7 +379,7 @@ def main(): try: rhn.enable() rhn.configure(**module.params) - rhn.register(username, password, autosubscribe, activationkey) + rhn.register(username, password, autosubscribe, activationkey, org_id) rhn.subscribe(pool) except Exception, e: module.fail_json(msg="Failed to register with '%s': %s" % (server_hostname, e))