Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Use proper schema for content_origin in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mdellweg committed Nov 5, 2020
1 parent 9b56554 commit 7320aee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES/7798.doc
@@ -0,0 +1 @@
Configured `content_origin' to properly choose between `http` and `https` in the example playbooks as well as the vagrant playbooks.
2 changes: 1 addition & 1 deletion playbooks/example-source/group_vars/all
Expand Up @@ -30,4 +30,4 @@ developer_user_home: /var/lib/pulp
developer_user: pulp
pulp_settings:
secret_key: secret
content_origin: "https://{{ ansible_fqdn }}"
content_origin: "{{ pulp_webserver_disable_https | default(false) | ternary('http', 'https') }}://{{ ansible_fqdn }}"
2 changes: 1 addition & 1 deletion playbooks/example-use/group_vars/all
Expand Up @@ -15,4 +15,4 @@ pulp_install_plugins:
# pulp-rpm: {}
pulp_settings:
secret_key: secret
content_origin: "https://{{ ansible_fqdn }}"
content_origin: "{{ pulp_webserver_disable_https | default(false) | ternary('http', 'https') }}://{{ ansible_fqdn }}"

0 comments on commit 7320aee

Please sign in to comment.