From c53470f2feab7b60e0a86e776644b1279f3d1bb7 Mon Sep 17 00:00:00 2001 From: Alexander Grothe Date: Tue, 16 Jan 2018 12:06:02 +0100 Subject: [PATCH] Add dependency to collect-facts --- Manual.org | 37 +++++++++++++++++++ roles/autoinstall-atric-usb/meta/main.yml | 1 + roles/autoinstall-dvbhddevice/meta/main.yml | 3 ++ roles/autoinstall-dvbsddevice/meta/main.yml | 3 ++ .../autoinstall-dvbsky-firmware/meta/main.yml | 3 ++ roles/autoinstall-firmware/meta/main.yml | 3 ++ 6 files changed, 50 insertions(+) create mode 100644 roles/autoinstall-dvbhddevice/meta/main.yml create mode 100644 roles/autoinstall-dvbsddevice/meta/main.yml create mode 100644 roles/autoinstall-dvbsky-firmware/meta/main.yml create mode 100644 roles/autoinstall-firmware/meta/main.yml diff --git a/Manual.org b/Manual.org index cdbf0f0..b44a244 100644 --- a/Manual.org +++ b/Manual.org @@ -3591,6 +3591,7 @@ This role installs the guest additions for virtualbox guests on Ubuntu 16.04 #+BEGIN_SRC yaml :tangle roles/autoinstall-atric-usb/meta/main.yml :padline no --- dependencies: + - { role: collect-facts } - { role: yavdr-remote } #+END_SRC @@ -3809,6 +3810,14 @@ If a Sat>IP Server responds to a discovery request, the package vdr-plugin-satip notify: [ 'Restart VDR' ] #+END_SRC ** autoinstall-firmware +*** dependencies +#+BEGIN_SRC yaml :tangle roles/autoinstall-firmware/meta/main.yml :padline no +--- +dependencies: + - { role: collect-facts } + +#+END_SRC +*** tasks #+BEGIN_SRC yaml :tangle roles/autoinstall-firmware/tasks/main.yml :padline no --- @@ -3829,12 +3838,26 @@ If a Sat>IP Server responds to a discovery request, the package vdr-plugin-satip when: '"2040:1605" in usb' #+END_SRC ** autoinstall-dvbsky-firmware +*** dependencies +#+BEGIN_SRC yaml :tangle roles/autoinstall-dvbsky-firmware/meta/main.yml :padline no +--- +dependencies: + - { role: collect-facts } + +#+END_SRC *** defaults #+INCLUDE: "roles/autoinstall-dvbsky-firmware/defaults/main.yml" src yaml *** tasks #+INCLUDE: "roles/autoinstall-dvbsky-firmware/tasks/main.yml" src yaml ** TODO autoinstall-dvbhddevice Problem: woher kommt der Treiber (AFAIK noch nicht im Kernel)? Die Firmware sollte in yavdr-firmware stecken +*** dependencies +#+BEGIN_SRC yaml :tangle roles/autoinstall-dvbhddevice/meta/main.yml :padline no +--- +dependencies: + - { role: collect-facts } + +#+END_SRC *** tasks #+BEGIN_SRC yaml :tangle roles/autoinstall-dvbhddevice/tasks/main.yml :padline no --- @@ -3848,6 +3871,13 @@ Problem: woher kommt der Treiber (AFAIK noch nicht im Kernel)? Die Firmware soll #+END_SRC ** autoinstall-dvbsddevice +*** dependencies +#+BEGIN_SRC yaml :tangle roles/autoinstall-dvbsddevice/meta/main.yml :padline no +--- +dependencies: + - { role: collect-facts } + +#+END_SRC *** tasks #+BEGIN_SRC yaml :tangle roles/autoinstall-dvbsddevice/tasks/main.yml :padline no --- @@ -3862,6 +3892,13 @@ Problem: woher kommt der Treiber (AFAIK noch nicht im Kernel)? Die Firmware soll notify: [ 'Restart VDR' ] #+END_SRC ** autoinstall-hardware-irmp +*** dependencies +#+BEGIN_SRC yaml :tangle roles/autoinstall-hardware-irmp/meta/main.yml :padline no +--- +dependencies: + - { role: collect-facts } + +#+END_SRC *** tasks #+BEGIN_SRC yaml :tangle roles/autoinstall-hardware-irmp/tasks/main.yml :padline no --- diff --git a/roles/autoinstall-atric-usb/meta/main.yml b/roles/autoinstall-atric-usb/meta/main.yml index 33f17ac..d86ed98 100644 --- a/roles/autoinstall-atric-usb/meta/main.yml +++ b/roles/autoinstall-atric-usb/meta/main.yml @@ -1,3 +1,4 @@ --- dependencies: + - { role: collect-facts } - { role: yavdr-remote } diff --git a/roles/autoinstall-dvbhddevice/meta/main.yml b/roles/autoinstall-dvbhddevice/meta/main.yml new file mode 100644 index 0000000..d6e669c --- /dev/null +++ b/roles/autoinstall-dvbhddevice/meta/main.yml @@ -0,0 +1,3 @@ +--- +dependencies: + - { role: collect-facts } diff --git a/roles/autoinstall-dvbsddevice/meta/main.yml b/roles/autoinstall-dvbsddevice/meta/main.yml new file mode 100644 index 0000000..b5c6a7e --- /dev/null +++ b/roles/autoinstall-dvbsddevice/meta/main.yml @@ -0,0 +1,3 @@ +--- +dependencies: + - { role: collect-facts } diff --git a/roles/autoinstall-dvbsky-firmware/meta/main.yml b/roles/autoinstall-dvbsky-firmware/meta/main.yml new file mode 100644 index 0000000..b5c6a7e --- /dev/null +++ b/roles/autoinstall-dvbsky-firmware/meta/main.yml @@ -0,0 +1,3 @@ +--- +dependencies: + - { role: collect-facts } diff --git a/roles/autoinstall-firmware/meta/main.yml b/roles/autoinstall-firmware/meta/main.yml new file mode 100644 index 0000000..b5c6a7e --- /dev/null +++ b/roles/autoinstall-firmware/meta/main.yml @@ -0,0 +1,3 @@ +--- +dependencies: + - { role: collect-facts }