Ansible_workstation/tasks/dotfiles.yml

144 lines
3.4 KiB
YAML
Raw Normal View History

2018-08-23 12:32:42 +00:00
---
2018-08-23 14:15:52 +00:00
- name: Copy urxvt Xdefault
2018-08-23 12:32:42 +00:00
template:
src: files/Xdefaults
2018-08-23 12:39:58 +00:00
dest: /home/{{ item.username }}/.Xdefaults
2018-08-23 12:45:01 +00:00
with_items: "{{ me }}"
2018-08-23 12:38:24 +00:00
when: not minimal
2018-08-23 12:32:42 +00:00
2018-08-23 14:15:52 +00:00
- name: Clone TPM (tmux plugin manager)
git:
repo: https://github.com/tmux-plugins/tpm
dest: /home/{{ item.username }}/.tmux/plugins/tpm
version: master
accept_hostkey: yes
2018-08-23 14:16:58 +00:00
with_items: "{{ me }}"
2018-08-23 14:15:52 +00:00
- name: Copy tmux.conf
template:
src: files/tmux.conf
dest: /home/{{ item.username }}/.tmux.conf
2018-08-23 14:42:26 +00:00
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
2018-08-25 13:36:24 +00:00
with_items: "{{ me }}"
2018-08-23 14:15:52 +00:00
- name: Install tmuxinator
gem:
name: tmuxinator
state: latest
when: not minimal and not server
- name: Copy .tmuxinator/
copy:
src: files/tmuxinator/
dest: /home/{{ item.username }}/.tmuxinator/
owner: "{{ item.username }}"
group: "{{ item.username }}"
with_items: "{{ me }}"
when: not minimal and not server
- name: Download antibody
get_url:
url: https://raw.githubusercontent.com/getantibody/installer/master/install
dest: /tmp/antibody.sh
mode: 0770
- name: Execute the antibody.sh
shell: /tmp/antibody.sh
become: yes
ignore_errors: yes
- name: Remove the antibody.sh
file: path=/tmp/antibody.sh state=absent
- name: Copy local zshrc
2018-11-12 09:08:52 +00:00
template:
src: files/zshrc
dest: /home/{{ item.username }}/.zshrc
owner: "{{ item.username }}"
group: "{{ item.username }}"
with_items: "{{ me }}"
2019-02-08 07:17:42 +00:00
when: prompt == 'zsh'
2018-11-12 09:08:52 +00:00
- name: Copy local zshrc.local
template:
src: files/zshrc.local
dest: /home/{{ item.username }}/.zshrc.local
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
with_items: "{{ me }}"
2019-02-08 07:17:42 +00:00
when: prompt == 'zsh'
2018-08-23 14:41:22 +00:00
2018-11-12 09:08:52 +00:00
- name: Copy local zsh_plugins.txt
template:
src: files/zsh_plugins.txt
dest: /home/{{ item.username }}/.zsh_plugins.txt
owner: "{{ item.username }}"
group: "{{ item.username }}"
with_items: "{{ me }}"
2019-02-08 07:17:42 +00:00
when: prompt == 'zsh'
2018-11-12 09:08:52 +00:00
2018-08-23 14:45:48 +00:00
- name: Copy .vim/
copy:
2018-08-23 14:45:48 +00:00
src: files/vim/
dest: /home/{{ item.username }}/.vim/
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
2018-08-23 14:45:48 +00:00
with_items: "{{ me }}"
- name: Creates .vim/autoload/
file:
path: /home/{{ item.username }}/.vim/autoload/
state: directory
with_items: "{{ me }}"
2018-08-23 14:41:22 +00:00
- name: Download plug.vim
get_url:
url: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
dest: /home/{{ item.username }}/.vim/autoload/plug.vim
2018-08-23 14:42:26 +00:00
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
2018-08-23 14:41:22 +00:00
with_items: "{{ me }}"
- name: Copy vimrc
template:
src: files/vimrc
dest: /home/{{ item.username }}/.vimrc
2018-08-23 14:42:26 +00:00
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
2018-08-23 14:41:22 +00:00
with_items: "{{ me }}"
- name: Copy .moc/
copy:
src: files/moc/
dest: /home/{{ item.username }}/.moc/
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
with_items: "{{ me }}"
2018-08-25 13:20:49 +00:00
when: not minimal and not server
2018-08-23 15:25:03 +00:00
- name: Creates .ssh
file:
path: /home/{{ item.username }}/.ssh/
state: directory
2018-08-23 15:35:23 +00:00
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
2018-08-23 15:25:03 +00:00
with_items: "{{ me }}"
- name: Copy ssh user config
template:
src: files/sshconfig
dest: /home/{{ item.username }}/.ssh/config
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
2018-08-23 15:25:03 +00:00
with_items: "{{ me }}"
2018-08-23 16:00:30 +00:00
- name: Copy gitconfig
template:
src: files/gitconfig
dest: /home/{{ item.username }}/.gitconfig
owner: "{{ item.username }}"
2018-10-17 09:40:09 +00:00
group: "{{ item.username }}"
2018-08-23 16:00:30 +00:00
with_items: "{{ me }}"