Skip to content

Commit

Permalink
Fix proxy settings (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamruzicka authored Jun 10, 2020
1 parent ae6aa04 commit 9bc785e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Role Variables
* `c_rh_c_host` - The API endpoint to connect to for cloud.redhat.com (default: `cert.cloud.redhat.com`)
* `skip_satellite_org_id_list` - A list of Satellite organizations to skip during setup
* `source_display_name` - The name for this Satellite in Sources on cloud.redhat.com (default: the hostname of the `satellite_url`)
* `http_proxy` - HTTP Proxy to used when talking to cloud.redhat.com (default: "", e.g. do not use any proxy)

License
-------
Expand Down
1 change: 1 addition & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ c_rh_c_host: "cert.cloud.redhat.com"
skip_satellite_org_id_list:
- 0
source_display_name: "{{ satellite_url|urlsplit('hostname') }}"
http_proxy: ""
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
loop_var: account_dir
environment:
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
https_proxy: "{{ http_proxy }}"
tags: register_with_sources
- name: Create Receptor systemd unit files per account and start them
block:
Expand Down

0 comments on commit 9bc785e

Please sign in to comment.