2014-08-06 06:15:21 +00:00
|
|
|
- name: Write pacman.conf
|
|
|
|
copy: src=pacman.conf dest=/etc/pacman.conf mode=0644
|
2014-09-07 06:53:20 +00:00
|
|
|
- name: Write mirrorlist
|
|
|
|
copy: src=mirrorlist dest=/etc/pacman.d/mirrorlist 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 18:15:50 +00:00
|
|
|
- user: name=root shell=/bin/bash
|
|
|
|
- name: delete oh-my-zsh repo
|
|
|
|
file: path=/root/.oh-my-zsh state=absent
|
|
|
|
- name: delete .zshrc
|
|
|
|
file: path=/root/.zshrs state=absent
|
|
|
|
- name: deploy .bashrc
|
|
|
|
copy: src=bashrc dest=/root/.bashrc
|
|
|
|
- name: deploy .dircolors
|
|
|
|
copy: src=dircolors dest=/root/.dircolors
|
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
|
2014-08-23 18:15:50 +00:00
|
|
|
- name: backup directory
|
|
|
|
file: path=/root/.vim.backupdir state=directory
|