您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

5 年前
1234567891011121314151617
  1. ---
  2. - name: dovecot sql config
  3. template:
  4. src: dovecot-sql.conf.ext.j2
  5. dest: /etc/dovecot/dovecot-sql.conf.ext.j2
  6. notify:
  7. - reload dovecot
  8. - name: postfixadmin mysql user
  9. mysql_user:
  10. name: "{{dovecot_postfixadmin_mysql_username}}"
  11. password: "{{dovecot_postfixadmin_mysql_password}}"
  12. priv: "{{dovecot_postfixadmin_mysql_database}}.*:SELECT"
  13. host: "{{inventory_hostname}}"
  14. state: present
  15. delegate_to: "{{dovecot_postfixadmin_mysql_host}}"