Files
ansible/roles/git/tasks/main.yml
2023-06-26 22:21:44 -07:00

26 lines
432 B
YAML

---
- name: Pull Cookbook Repository
become: yes
become_user: opal
git:
repo: "{{ cookbook_repo }}"
dest: "{{ cookbook_dest }}"
update: no
- name: Pull pfetch
become: yes
become_user: opal
git:
repo: "{{ pfetch_repo }}"
dest: "{{ pfetch_dest }}"
update: no
- name: Pull doom emacs
become: yes
become_user: opal
git:
repo: "{{ doom_repo }}"
dest: "{{ doom_dest }}"
update: no