ansible/roles/container/tasks/main.yml

13 lines
466 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-10 18:20:23 +00:00
- name: Disable getty
file: src=/dev/null dest=/etc/systemd/system/getty.target state=link
- name: Disable logind
file: src=/dev/null dest=/etc/systemd/system/systemd-logind.service state=link
- name: Disable logind
service: name=systemd-logind state=stopped enabled=no