summaryrefslogtreecommitdiffstats
path: root/mltk-core/tasks/main.yml
blob: 95a7cd712973f4e551f1a11df45bf64cdf5636e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- import_tasks: tasks/repo.yml

- name: mltk | Install git
  package:
    name: git
    state: present

- name: mltk | Checkout repository
  git:
    repo: "{{ mltk_git_source }}"
    dest: "{{ mltk_git_target }}"
    version: "{{ mltk_git_branch }}"
    depth: 1