aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles/my_dotfiles/tasks/main.yml
blob: 9851658d52f6305a22db220678338a008e7b5106 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
- name: Pull repositories
  ansible.builtin.git:
    accept_hostkey: true
    dest: '{{ my_dotfiles_dir }}'
    repo: '{{ my_dotfiles_repo }}'

- name: Run setup.sh
  ansible.builtin.command: ./setup.sh
  args:
    chdir: '{{ my_dotfiles_dir }}'