summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2018-08-21 17:35:57 +0200
committerJonathan Bauer2018-08-21 17:35:57 +0200
commit650c8bcb748732aec3cf58947e3d168efb2bafc4 (patch)
treef0894045d1682d43fbfcfc2b318a3cfb1751c5df
parentremove run-playbook-only.json (diff)
downloadansible-dracut-650c8bcb748732aec3cf58947e3d168efb2bafc4.tar.gz
ansible-dracut-650c8bcb748732aec3cf58947e3d168efb2bafc4.tar.xz
ansible-dracut-650c8bcb748732aec3cf58947e3d168efb2bafc4.zip
removed bwlp playbooks/roles
it is getting moved to another repo
-rw-r--r--setup-bwlp.yml5
-rw-r--r--setup-bwlp/README.md2
-rw-r--r--setup-bwlp/files/.placeholder0
-rw-r--r--setup-bwlp/meta/main.yml3
-rw-r--r--setup-bwlp/tasks/distro.yml21
-rw-r--r--setup-bwlp/tasks/main.yml16
-rw-r--r--setup-bwlp/vars/main.yml3
7 files changed, 0 insertions, 50 deletions
diff --git a/setup-bwlp.yml b/setup-bwlp.yml
deleted file mode 100644
index 0c418b7..0000000
--- a/setup-bwlp.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-- hosts: "all"
- gather_facts: yes
- roles:
- - { role: "setup-bwlp" }
diff --git a/setup-bwlp/README.md b/setup-bwlp/README.md
deleted file mode 100644
index 0619a27..0000000
--- a/setup-bwlp/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# WORK IN PROGRESS
-
diff --git a/setup-bwlp/files/.placeholder b/setup-bwlp/files/.placeholder
deleted file mode 100644
index e69de29..0000000
--- a/setup-bwlp/files/.placeholder
+++ /dev/null
diff --git a/setup-bwlp/meta/main.yml b/setup-bwlp/meta/main.yml
deleted file mode 100644
index 713e243..0000000
--- a/setup-bwlp/meta/main.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-dependencies:
- - { role: setup-dev-tools }
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"
diff --git a/setup-bwlp/vars/main.yml b/setup-bwlp/vars/main.yml
deleted file mode 100644
index 96cfd6b..0000000
--- a/setup-bwlp/vars/main.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-gitsource: "git://git.openslx.org/openslx-ng/mltk"
-gittarget: "/opt/mltk"
-gitbranch: "installer"