You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ansible.yml 248 B

10 jaren geleden
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