summaryrefslogtreecommitdiffstats
path: root/setup-bwlp/tasks/main.yml
blob: 5ad329f49af1b9ed04d77398f6f483601b1edee2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- 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 }}"
    version: "{{ gitbranch }}"
    depth: 1