aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles/my_dotfiles/tasks/main.yml
blob: 511483e4bd9148a587cb5ad447c95929852cde11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
- name: Pull repositories
  ansible.builtin.git:
    accept_hostkey: true
    dest: "~/workspace/personal/{{ item }}"
    repo: "git@github.com:egor-tensin/{{ item }}.git"
  loop:
    - linux-home

- name: Run setup.sh
  ansible.builtin.command: ./setup.sh
  args:
    chdir: ~/workspace/personal/linux-home