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

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