浏览代码

Merge pull request #616 from cimm/bare_variable_depreciation

Fix bare variable depreciation
Allen Riddell 7 年前
父节点
当前提交
e46021468e
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      roles/mailserver/tasks/dovecot.yml

+ 2
- 2
roles/mailserver/tasks/dovecot.yml 查看文件

@@ -23,11 +23,11 @@
23 23
 
24 24
 - name: Ensure mail domain directories are in place
25 25
   file: state=directory path=/decrypted/{{ item.name }} owner=vmail group=dovecot mode=0770
26
-  with_items: mail_virtual_domains
26
+  with_items: '{{ mail_virtual_domains }}'
27 27
 
28 28
 - name: Ensure mail directories are in place
29 29
   file: state=directory path=/decrypted/{{ item.domain }}/{{ item.account }} owner=vmail group=dovecot
30
-  with_items: mail_virtual_users
30
+  with_items: '{{ mail_virtual_users }}'
31 31
 
32 32
 - name: Copy dovecot.conf into place
33 33
   copy: src=etc_dovecot_dovecot.conf dest=/etc/dovecot/dovecot.conf

正在加载...
取消
保存