25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- # do not forget to add lxpolkit to autostart!
- - hosts: all
- vars:
- packages: [udevil]
- sudo: yes
- tasks:
- - name: install packages
- pacman: name={{item}} state=installed
- with_items: packages
- when: ansible_os_family == "Archlinux"
- - name: add user yuk to storage group
- user: append=yes groups=storage name=yuk
|