Files
ansible/roles/git/tasks/main.yml
2022-07-20 15:08:48 -07:00

25 lines
446 B
YAML

---
- name: Pull Dotfiles Repository
git:
repo: "{{ dotfiles_repo }}"
dest: "{{ dotfiles_dest }}"
update: no
- name: Pull Cookbook Repository
git:
repo: "{{ cookbook_repo }}"
dest: "{{ cookbook_dest }}"
update: no
- name: Pull pfetch
git:
repo: "{{ pfetch_repo }}"
dest: "{{ pfetch_dest }}"
update: no
- name: Pull Org Files
git:
repo: "{{ org_repo }}"
dest: "{{ org_dest }}"
update: no