|
|
@ -1,16 +1,11 @@
|
|
|
|
- hosts: all
|
|
|
|
- hosts: dev
|
|
|
|
tasks:
|
|
|
|
|
|
|
|
- group_by: key={{ ansible_distribution }}
|
|
|
|
|
|
|
|
- hosts: MacOSX
|
|
|
|
|
|
|
|
gather_facts: false
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
tasks:
|
|
|
|
- name: install dependencies
|
|
|
|
- name: install dependencies
|
|
|
|
homebrew: name={{ item }} state=present
|
|
|
|
homebrew: name={{ item }} state=present
|
|
|
|
with_items:
|
|
|
|
with_items:
|
|
|
|
- git
|
|
|
|
- git
|
|
|
|
- stow
|
|
|
|
- stow
|
|
|
|
- hosts: Debian
|
|
|
|
- hosts: prgmr
|
|
|
|
gather_facts: false
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
tasks:
|
|
|
|
- name: install dependencies
|
|
|
|
- name: install dependencies
|
|
|
|
apt: pkg={{ item }} state=present
|
|
|
|
apt: pkg={{ item }} state=present
|
|
|
@ -18,17 +13,26 @@
|
|
|
|
- git
|
|
|
|
- git
|
|
|
|
- stow
|
|
|
|
- stow
|
|
|
|
- hosts: all
|
|
|
|
- hosts: all
|
|
|
|
gather_facts: false
|
|
|
|
|
|
|
|
vars:
|
|
|
|
vars:
|
|
|
|
stow_packages:
|
|
|
|
stow_packages:
|
|
|
|
- git
|
|
|
|
- git
|
|
|
|
- tmux
|
|
|
|
- tmux
|
|
|
|
|
|
|
|
ln_packages:
|
|
|
|
|
|
|
|
tmux/.tmux.conf: .tmux.conf
|
|
|
|
tasks:
|
|
|
|
tasks:
|
|
|
|
- name: clone dotfiles
|
|
|
|
- name: clone/update dotfiles
|
|
|
|
git: repo=https://github.com/kejadlen/dotfiles.git dest=~/.dotfiles
|
|
|
|
git: repo=https://github.com/kejadlen/dotfiles.git dest=~/.dotfiles
|
|
|
|
|
|
|
|
- shell: hash stow 2> /dev/null
|
|
|
|
|
|
|
|
register: stow_exists
|
|
|
|
|
|
|
|
ignore_errors: True
|
|
|
|
- name: stow files
|
|
|
|
- name: stow files
|
|
|
|
command: chdir={{ ansible_env.HOME }}/.dotfiles stow --target={{ ansible_env.HOME }} --stow {{ item }}
|
|
|
|
command: chdir={{ ansible_env.HOME }}/.dotfiles stow --target={{ ansible_env.HOME }} --stow {{ item }}
|
|
|
|
with_items: stow_packages
|
|
|
|
with_items: stow_packages
|
|
|
|
|
|
|
|
when: stow_exists|success
|
|
|
|
|
|
|
|
- name: link files
|
|
|
|
|
|
|
|
command: ln -fs {{ ansible_env.HOME }}/.dotfiles/{{ item.key }} {{ ansible_env.HOME }}/{{ item.value }}
|
|
|
|
|
|
|
|
with_dict: ln_packages
|
|
|
|
|
|
|
|
when: stow_exists|failed
|
|
|
|
- name: link unstowable files
|
|
|
|
- name: link unstowable files
|
|
|
|
file: src={{ ansible_env.HOME }}/.dotfiles/{{ item.key }} dest={{ ansible_env.HOME}}/{{ item.value }} state=link
|
|
|
|
file: src={{ ansible_env.HOME }}/.dotfiles/{{ item.key }} dest={{ ansible_env.HOME}}/{{ item.value }} state=link
|
|
|
|
with_dict:
|
|
|
|
with_dict:
|
|
|
|