ansible-desktop/roles/desktop/tasks/dotfiles.yml

18 lines
301 B
YAML
Raw Normal View History

2022-05-19 20:24:32 +00:00
---
- name: checkout dotfiles
git:
repo: "{{ dotfiles.repo }}"
dest: "{{ desktop_src_dir }}/dotfiles"
2022-05-19 20:24:32 +00:00
clone: yes
update: yes
- name: create bin dir
file:
path: ~/bin
2023-04-24 11:25:19 +00:00
state: directory
2022-05-19 20:24:32 +00:00
- name: install
make:
target: install
chdir: "{{ desktop_src_dir }}/dotfiles"