ansible-desktop/roles/dotfiles/tasks/main.yml
2023-08-26 23:57:26 +02:00

18 lines
301 B
YAML

---
- name: checkout dotfiles
git:
repo: "{{ dotfiles.repo }}"
dest: "{{ desktop_src_dir }}/dotfiles"
clone: yes
update: yes
- name: create bin dir
file:
path: ~/bin
state: directory
- name: install
make:
target: install
chdir: "{{ desktop_src_dir }}/dotfiles"