mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Redhat subscription proxy support (#22544)
This commit is contained in:
parent
2a63693580
commit
fee42a01d9
1 changed files with 50 additions and 4 deletions
|
@ -59,6 +59,30 @@ options:
|
||||||
- Specify CDN baseurl
|
- Specify CDN baseurl
|
||||||
required: False
|
required: False
|
||||||
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
||||||
|
server_proxy_hostname:
|
||||||
|
description:
|
||||||
|
- Specify a HTTP proxy hostname
|
||||||
|
required: False
|
||||||
|
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
||||||
|
version_added: "2.4"
|
||||||
|
server_proxy_port:
|
||||||
|
description:
|
||||||
|
- Specify a HTTP proxy port
|
||||||
|
required: False
|
||||||
|
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
||||||
|
version_added: "2.4"
|
||||||
|
server_proxy_user:
|
||||||
|
description:
|
||||||
|
- Specify a user for HTTP proxy with basic authentication
|
||||||
|
required: False
|
||||||
|
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
||||||
|
version_added: "2.4"
|
||||||
|
server_proxy_password:
|
||||||
|
description:
|
||||||
|
- Specify a password for HTTP proxy with basic authentication
|
||||||
|
required: False
|
||||||
|
default: Current value from C(/etc/rhsm/rhsm.conf) is the default
|
||||||
|
version_added: "2.4"
|
||||||
autosubscribe:
|
autosubscribe:
|
||||||
description:
|
description:
|
||||||
- Upon successful registration, auto-consume available subscriptions
|
- Upon successful registration, auto-consume available subscriptions
|
||||||
|
@ -315,7 +339,7 @@ class Rhsm(RegistrationBase):
|
||||||
# 'server_hostname' becomes '--server.hostname'.
|
# 'server_hostname' becomes '--server.hostname'.
|
||||||
for k, v in kwargs.items():
|
for k, v in kwargs.items():
|
||||||
if re.search(r'^(server|rhsm)_', k):
|
if re.search(r'^(server|rhsm)_', k):
|
||||||
args.append('--%s=%s' % (k.replace('_', '.'), v))
|
args.append('--%s=%s' % (k.replace('_', '.', 1), v))
|
||||||
|
|
||||||
self.module.run_command(args, check_rc=True)
|
self.module.run_command(args, check_rc=True)
|
||||||
|
|
||||||
|
@ -337,7 +361,8 @@ class Rhsm(RegistrationBase):
|
||||||
|
|
||||||
def register(self, username, password, autosubscribe, activationkey, org_id,
|
def register(self, username, password, autosubscribe, activationkey, org_id,
|
||||||
consumer_type, consumer_name, consumer_id, force_register, environment,
|
consumer_type, consumer_name, consumer_id, force_register, environment,
|
||||||
rhsm_baseurl, server_insecure, server_hostname):
|
rhsm_baseurl, server_insecure, server_hostname, server_proxy_hostname,
|
||||||
|
server_proxy_port, server_proxy_user, server_proxy_password):
|
||||||
'''
|
'''
|
||||||
Register the current system to the provided RHSM or Sat6 server
|
Register the current system to the provided RHSM or Sat6 server
|
||||||
Raises:
|
Raises:
|
||||||
|
@ -376,6 +401,12 @@ class Rhsm(RegistrationBase):
|
||||||
args.extend(['--consumerid', consumer_id])
|
args.extend(['--consumerid', consumer_id])
|
||||||
if environment:
|
if environment:
|
||||||
args.extend(['--environment', environment])
|
args.extend(['--environment', environment])
|
||||||
|
if server_proxy_hostname and server_proxy_port:
|
||||||
|
args.extend(['--proxy', server_proxy_hostname + ':' + server_proxy_port])
|
||||||
|
if server_proxy_user:
|
||||||
|
args.extend(['--proxyuser', server_proxy_user])
|
||||||
|
if server_proxy_password:
|
||||||
|
args.extend(['--proxypassword', server_proxy_password])
|
||||||
|
|
||||||
rc, stderr, stdout = self.module.run_command(args, check_rc=True)
|
rc, stderr, stdout = self.module.run_command(args, check_rc=True)
|
||||||
|
|
||||||
|
@ -662,8 +693,18 @@ def main():
|
||||||
required=False),
|
required=False),
|
||||||
force_register=dict(default=False,
|
force_register=dict(default=False,
|
||||||
type='bool'),
|
type='bool'),
|
||||||
|
server_proxy_hostname=dict(default=rhsm.config.get_option('server.proxy_hostname'),
|
||||||
|
required=False),
|
||||||
|
server_proxy_port=dict(default=rhsm.config.get_option('server.proxy_port'),
|
||||||
|
required=False),
|
||||||
|
server_proxy_user=dict(default=rhsm.config.get_option('server.proxy_user'),
|
||||||
|
required=False),
|
||||||
|
server_proxy_password=dict(default=rhsm.config.get_option('server.proxy_password'),
|
||||||
|
required=False,
|
||||||
|
no_log=True),
|
||||||
),
|
),
|
||||||
required_together=[['username', 'password'], ['activationkey', 'org_id']],
|
required_together=[['username', 'password'], ['activationkey', 'org_id'],
|
||||||
|
['server_proxy_hostname', 'server_proxy_port'], ['server_proxy_user', 'server_proxy_password']],
|
||||||
mutually_exclusive=[['username', 'activationkey'], ['pool', 'pool_ids']],
|
mutually_exclusive=[['username', 'activationkey'], ['pool', 'pool_ids']],
|
||||||
required_if=[['state', 'present', ['username', 'activationkey'], True]],
|
required_if=[['state', 'present', ['username', 'activationkey'], True]],
|
||||||
)
|
)
|
||||||
|
@ -693,6 +734,10 @@ def main():
|
||||||
consumer_name = module.params["consumer_name"]
|
consumer_name = module.params["consumer_name"]
|
||||||
consumer_id = module.params["consumer_id"]
|
consumer_id = module.params["consumer_id"]
|
||||||
force_register = module.params["force_register"]
|
force_register = module.params["force_register"]
|
||||||
|
server_proxy_hostname = module.params['server_proxy_hostname']
|
||||||
|
server_proxy_port = module.params['server_proxy_port']
|
||||||
|
server_proxy_user = module.params['server_proxy_user']
|
||||||
|
server_proxy_password = module.params['server_proxy_password']
|
||||||
|
|
||||||
global SUBMAN_CMD
|
global SUBMAN_CMD
|
||||||
SUBMAN_CMD = module.get_bin_path('subscription-manager', True)
|
SUBMAN_CMD = module.get_bin_path('subscription-manager', True)
|
||||||
|
@ -721,7 +766,8 @@ def main():
|
||||||
rhsm.configure(**module.params)
|
rhsm.configure(**module.params)
|
||||||
rhsm.register(username, password, autosubscribe, activationkey, org_id,
|
rhsm.register(username, password, autosubscribe, activationkey, org_id,
|
||||||
consumer_type, consumer_name, consumer_id, force_register,
|
consumer_type, consumer_name, consumer_id, force_register,
|
||||||
environment, rhsm_baseurl, server_insecure, server_hostname)
|
environment, rhsm_baseurl, server_insecure, server_hostname,
|
||||||
|
server_proxy_hostname, server_proxy_port, server_proxy_user, server_proxy_password)
|
||||||
if pool_ids:
|
if pool_ids:
|
||||||
subscribed_pool_ids = rhsm.subscribe_by_pool_ids(pool_ids)
|
subscribed_pool_ids = rhsm.subscribe_by_pool_ids(pool_ids)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue