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

19 行
338B

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