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