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.
|
- ---
- - hosts: all
- sudo: yes
- vars:
- packages: [rsync, git]
- tasks:
- - name: Install packages
- action: pacman pkg={{ item }} state=installed
- with_items: packages
- when: ansible_os_family == "Archlinux"
- # handlers:
- # - name: restart ntpd
- # action: service name=ntpd state=restarted
|