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

123456789101112
  1. ---
  2. - hosts: all
  3. sudo: yes
  4. tasks:
  5. - name: Install packages
  6. action: pacman pkg={{ item }} state=installed
  7. with_items:
  8. - rsync
  9. - git
  10. # handlers:
  11. # - name: restart ntpd
  12. # action: service name=ntpd state=restarted