summaryrefslogtreecommitdiffstats
path: root/setup-bwlp/tasks/main.yml
blob: df542618961bb02ca93268745f516b3b96594d14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
- include: tasks/distro.yml

- name: mltk | Install dependencies
  package: name={{ item }} state=installed
  with_items: "{{ pkgnames }}"

- name: mltk | Checkout repository
  git:
    repo: "{{ gitsource }}"
    dest: "{{ gittarget }}"
    depth: 1