ansible/roles/container/tasks/main.yml

19 lines
663 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-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
2014-08-23 14:00:32 +00:00
- user: name=root shell=/usr/bin/zsh
- name: Clone oh-my-zsh repo
git: repo=https://github.com/robbyrussell/oh-my-zsh.git dest=/root/.oh-my-zsh
- name: deploy .zshrc
copy: src=zshrc dest=/root/.zshrc
2014-08-18 08:12:20 +00:00
- mount: name=/run/systemd/journal/ src=/mnt/journal fstype=none opts=bind,ro state=present
2014-08-23 14:00:32 +00:00
- name: deploy .vimrc
copy: src=vimrc dest=/root/.vimrc