summaryrefslogtreecommitdiffstats
path: root/mltk-core/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'mltk-core/tasks/main.yml')
-rw-r--r--mltk-core/tasks/main.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/mltk-core/tasks/main.yml b/mltk-core/tasks/main.yml
new file mode 100644
index 0000000..95a7cd7
--- /dev/null
+++ b/mltk-core/tasks/main.yml
@@ -0,0 +1,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