ansible/roles/container/tasks/main.yml

16 lines
509 B
YAML
Raw Normal View History

2014-08-06 06:15:21 +00:00
- name: Write pacman.conf
copy: src=pacman.conf dest=/etc/pacman.conf mode=0644
2014-08-10 18:20:09 +00:00
- name: update cache htop
pacman: update_cache=yes
2014-08-06 08:55:08 +00:00
- name: install htop
pacman: name=htop state=present
2014-08-18 08:12:20 +00:00
- name: Mask services
file: src=/dev/null dest=/etc/systemd/system/{{ item }} state=link
with_items: masked_services
- name: Stop services
service: name={{ item }} state=stopped enabled=no
with_items: masked_services
- mount: name=/run/systemd/journal/ src=/mnt/journal fstype=none opts=bind,ro state=present