Add proxy for subscription-manager (#8012)
If using proxy, it is necessary to configure it before running "subscription-manager status" command. This adds the step.
This commit is contained in:
parent
d27cf375af
commit
da92c7e215
1 changed files with 7 additions and 0 deletions
|
@ -16,6 +16,13 @@
|
||||||
become: true
|
become: true
|
||||||
when: not skip_http_proxy_on_os_packages
|
when: not skip_http_proxy_on_os_packages
|
||||||
|
|
||||||
|
- name: Add proxy to RHEL subscription-manager if http_proxy is defined
|
||||||
|
command: /sbin/subscription-manager config --server.proxy_hostname={{ http_proxy | regex_replace(':\\d+$') }} --server.proxy_port={{ http_proxy | regex_replace('^.*:') }}
|
||||||
|
become: true
|
||||||
|
when:
|
||||||
|
- not skip_http_proxy_on_os_packages
|
||||||
|
- http_proxy is defined
|
||||||
|
|
||||||
- name: Check RHEL subscription-manager status
|
- name: Check RHEL subscription-manager status
|
||||||
command: /sbin/subscription-manager status
|
command: /sbin/subscription-manager status
|
||||||
register: rh_subscription_status
|
register: rh_subscription_status
|
||||||
|
|
Loading…
Reference in a new issue