選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

14 行
315 B

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