summaryrefslogtreecommitdiffstats
path: root/setup-bwlp/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'setup-bwlp/tasks')
-rw-r--r--setup-bwlp/tasks/distro.yml21
-rw-r--r--setup-bwlp/tasks/main.yml16
2 files changed, 0 insertions, 37 deletions
diff --git a/setup-bwlp/tasks/distro.yml b/setup-bwlp/tasks/distro.yml
deleted file mode 100644
index 25e222a..0000000
--- a/setup-bwlp/tasks/distro.yml
+++ /dev/null
@@ -1,21 +0,0 @@
----
-- set_fact:
- pkgnames:
- - qt-devel
- when:
- - ansible_distribution == "CentOS"
-- set_fact:
- pkgnames:
- - automake
- - lsof
- - libqt4-dev
- - m4
- - rsync
- - squashfs-tools
- - pkg-config
- - cmake
- - build-essential
- - xserver-xorg
- when:
- - ansible_distribution == "Ubuntu"
-
diff --git a/setup-bwlp/tasks/main.yml b/setup-bwlp/tasks/main.yml
deleted file mode 100644
index 8804936..0000000
--- a/setup-bwlp/tasks/main.yml
+++ /dev/null
@@ -1,16 +0,0 @@
----
-- 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
-
-- name: mltk | Build bwlp target
- shell: "{{ gittarget }}/mltk bwlp -b -i"