diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-06-13 10:22:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 10:22:01 -0400 |
commit | e768cf9420b967527d0e7b2323aedc131c9a27a6 (patch) | |
tree | c176e96510ecbe061d4299e3c54943d693bbd52e /playbooks/common | |
parent | 8603fb127a9e871e491362ad550377971b8d4979 (diff) | |
parent | 29995105c0143505a51b3c1102a3eadc60b46318 (diff) | |
download | openshift-e768cf9420b967527d0e7b2323aedc131c9a27a6.tar.gz openshift-e768cf9420b967527d0e7b2323aedc131c9a27a6.tar.bz2 openshift-e768cf9420b967527d0e7b2323aedc131c9a27a6.tar.xz openshift-e768cf9420b967527d0e7b2323aedc131c9a27a6.zip |
Merge pull request #4410 from rhcarvalho/fix-4306-gluster-vars
Fix possible access to undefined variable
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-cluster/evaluate_groups.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/common/openshift-cluster/evaluate_groups.yml b/playbooks/common/openshift-cluster/evaluate_groups.yml index 46932b27f..c28ce4c14 100644 --- a/playbooks/common/openshift-cluster/evaluate_groups.yml +++ b/playbooks/common/openshift-cluster/evaluate_groups.yml @@ -155,5 +155,5 @@ groups: oo_glusterfs_to_config ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" ansible_become: "{{ g_sudo | default(omit) }}" - with_items: "{{ g_glusterfs_hosts | union(g_glusterfs_registry_hosts) | default([]) }}" + with_items: "{{ g_glusterfs_hosts | union(g_glusterfs_registry_hosts | default([])) }}" changed_when: no |