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.

10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
10 年之前
12345678910111213
  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