Browse Source

Add brackets to variable in prosody task.

David Young 8 years ago
parent
commit
ec3f62c619
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      roles/xmpp/tasks/prosody.yml

+ 1
- 1
roles/xmpp/tasks/prosody.yml View File

28
 
28
 
29
 - name: Create Prosody accounts
29
 - name: Create Prosody accounts
30
   command: prosodyctl register {{ item.name }} {{ prosody_virtual_domain }} "{{ item.password }}"
30
   command: prosodyctl register {{ item.name }} {{ prosody_virtual_domain }} "{{ item.password }}"
31
-  with_items: prosody_accounts
31
+  with_items: "{{ prosody_accounts }}"
32
 
32
 
33
 - name: Set firewall rules for Prosody
33
 - name: Set firewall rules for Prosody
34
   ufw: rule=allow port={{ item }} proto=tcp
34
   ufw: rule=allow port={{ item }} proto=tcp

Loading…
Cancel
Save