Browse Source

ansible: use sudo only for installing packages

pull/1/head
10sr 10 years ago
parent
commit
901177dfc8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ansible/ansible.yml

+ 1
- 1
ansible/ansible.yml View File

@@ -1,12 +1,12 @@
---
- hosts: all
sudo: yes
vars:
packages: [rsync, git, htop]
tasks:
- name: install packages
action: pacman pkg={{ item }} state=installed
with_items: packages
sudo: yes
when: ansible_os_family == "Archlinux"
# handlers:
# - name: restart ntpd


Loading…
Cancel
Save