workstation/roles/home-cli/tasks/dotfiles.yml

26 lines
575 B
YAML
Raw Normal View History

---
2019-11-22 15:46:55 +00:00
- name: Copy .gemrc
copy:
src: gemrc
dest: "{{ ansible_env.HOME }}/.gemrc"
2019-11-25 11:01:39 +00:00
- name: Remove .hushlogin
file:
path: "{{ ansible_env.HOME }}/.hushlogin"
state: absent
- name: Copy .tmux.conf
copy:
src: tmux.conf
dest: "{{ ansible_env.HOME }}/.tmux.conf"
2019-10-09 13:07:20 +00:00
- name: Copy openpgp.asc
copy:
src: openpgp.asc
dest: "{{ ansible_env.HOME }}/.config/openpgp.asc"
2020-06-04 21:42:31 +00:00
- name: Copy .dput.cf
copy:
src: dput.cf
dest: "{{ ansible_env.HOME }}/.dput.cf"
- name: Copy .mailcap
copy:
src: mailcap
dest: "{{ ansible_env.HOME }}/.mailcap"