Browse Source
Add proxy for subscription-manager (#8012) (#8039)
If using proxy, it is necessary to configure it before running
"subscription-manager status" command.
This adds the step.
pull/8042/head
Kenichi Omichi
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
0 deletions
-
roles/bootstrap-os/tasks/bootstrap-redhat.yml
|
@ -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 |
|
|