We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d7456c + 4e38c66 commit eef193bCopy full SHA for eef193b
1 file changed
tasks/main.yml
@@ -80,13 +80,13 @@
80
- name: Configure /vsmagent/allowed_clients
81
tlconfig:
82
param: /vsmagent/allowed_clients
83
- value: "{{ groups['thinlinc_masters'] | default(['localhost']) | join(' ') }}"
+ value: "{{ groups['thinlinc_masters'] | default(['localhost'], true) | join(' ') }}"
84
notify: restart vsmagent
85
when: "'thinlinc_agents' in group_names"
86
87
- name: Configure list of agent servers
88
89
param: /vsmserver/subclusters/Default/agents
90
- value: "{{ groups['thinlinc_agents'] | default(['localhost']) | join(' ') }}"
+ value: "{{ groups['thinlinc_agents'] | default(['localhost'], true) | join(' ') }}"
91
notify: restart vsmserver
92
when: "'thinlinc_masters' in group_names"
0 commit comments