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

14 行
317 B

  1. ---
  2. - hosts: all
  3. vars:
  4. packages: [rsync, git, htop]
  5. tasks:
  6. - name: install packages
  7. action: pacman pkg={{ item }} state=installed
  8. with_items: packages
  9. sudo: yes
  10. when: ansible_os_family == "Archlinux"
  11. # handlers:
  12. # - name: restart ntpd
  13. # action: service name=ntpd state=restarted