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

22 行
397B

  1. ---
  2. - name: install package
  3. apt:
  4. pkg: "{{ item }}"
  5. with_items:
  6. - dovecot-imapd
  7. - dovecot-lmptd
  8. - name: configuration pull directory
  9. local_action: file
  10. args:
  11. path: host_files/{{inventory_hostname}}/etc
  12. state: directory
  13. - name: pull configuration
  14. synchronize:
  15. src: /etc/dovecot
  16. dest: host_files/{{inventory_hostname}}/etc/
  17. mode: pull
  18. recursive: true