Procházet zdrojové kódy

Fix nested iteration of `openvpn_clients`.

John Giannelos před 6 roky
rodič
revize
264d61ec73
No account linked to committer's email address
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      roles/vpn/tasks/openvpn.yml

+ 2
- 2
roles/vpn/tasks/openvpn.yml Zobrazit soubor

@@ -163,14 +163,14 @@
163 163
   tags:
164 164
     - skip_ansible_lint
165 165
   with_nested:
166
-    - openvpn_clients
166
+    - "{{ openvpn_clients }}"
167 167
     - ["ca.crt", "ta.key"]
168 168
 
169 169
 - name: Retrieve the files that clients will need in order to connect to the OpenVPN server
170 170
   fetch: src={{ openvpn_path }}/{{ item[0] }}/{{ item[1] }}
171 171
          dest=/tmp/sovereign-openvpn-files
172 172
   with_nested:
173
-    - openvpn_clients
173
+    - "{{ openvpn_clients }}"
174 174
     - ["client.crt", "client.key", "ca.crt", "ta.key", "{{ openvpn_server }}.ovpn"]
175 175
 
176 176
 - pause: seconds=5

Loading…
Zrušit
Uložit