Files
ansible/roles/git/tasks/main.yml
2022-12-17 15:38:25 -08:00

42 lines
719 B
YAML

---
- name: Pull Dotfiles Repository
become: yes
become_user: opal
git:
repo: "{{ dotfiles_repo }}"
dest: "{{ dotfiles_dest }}"
update: no
- 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
- name: Pull yay repo
become: yes
become_user: opal
git:
repo: "{{ yay_repo }}"
dest: "{{ yay_dest }}"
update: no