25 lines
446 B
YAML
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
|