2017-02-19 13:56:47 +01:00
|
|
|
---
|
2017-02-22 15:27:48 +01:00
|
|
|
# file: yavdr07.yml
|
|
|
|
# this playbook sets up a complete yaVDR 0.7 installation
|
2017-02-20 14:29:15 +01:00
|
|
|
|
2017-02-22 15:27:48 +01:00
|
|
|
- name: set up yaVDR
|
|
|
|
hosts: all
|
2017-02-20 14:29:15 +01:00
|
|
|
become: true
|
|
|
|
roles:
|
2017-07-15 14:28:23 +02:00
|
|
|
- yavdr-common # install and configure the basic system
|
2017-11-20 09:21:22 +01:00
|
|
|
- collect-facts # query system facts
|
2017-07-15 14:28:23 +02:00
|
|
|
- autoinstall-ubuntu-drivers # use ubuntu-drivers to install proprietary dirvers
|
|
|
|
# (e.g. nvidia, virtualbox)
|
2017-11-12 19:07:21 +01:00
|
|
|
# - nvidia-387 # install very recent nvidia-387 from ppa:graphics-drivers/ppa
|
2017-07-15 14:28:23 +02:00
|
|
|
- vdr # install vdr and related packages
|
|
|
|
- yavdr-network # enable network client capabilities
|
|
|
|
- samba-install # install samba server
|
|
|
|
- samba-config # configure samba server
|
|
|
|
- nfs-server # install nfs server
|
|
|
|
- pulseaudio # install pulseaudio
|
|
|
|
- yavdr-xorg # graphical session
|
|
|
|
- yavdr-remote # remote configuration files, services and scripts
|
|
|
|
- autoinstall-satip # install vdr-plugin-satip if a Sat>IP server has been found
|
|
|
|
- autoinstall-targavfd # install vdr-plugin-targavfd if display is connected
|
|
|
|
- autoinstall-imonlcd # install vdr-plugin-imonlcd if a matchind display is connected
|
2017-07-31 00:22:10 +02:00
|
|
|
- autoinstall-pvr350 # install vdr-plugin-pgvr350 if a matching card is detected
|
|
|
|
- autoinstall-hauppauge-pvr # install vdr-plugin-pvrinput if a matching card is found
|
2017-07-15 14:28:23 +02:00
|
|
|
- autoinstall-dvbsddevice # install vdr-plugin-dvbsddevice if a matching card is detected
|
2017-11-13 09:46:51 +01:00
|
|
|
- autoinstall-hardware-irmp # install yavdr-hardware-irmp if a matching usb device is detected
|
2017-11-18 10:48:50 +01:00
|
|
|
- autoinstall-dvbsky-firmware # download an install required firmware files for dvbsky cards
|
2017-06-20 15:09:15 +02:00
|
|
|
- kodi
|
2017-07-15 14:28:23 +02:00
|
|
|
- dvd # set up packages and a udev rule to allow kodi and other players
|
|
|
|
# to play and eject optical media
|
2017-11-20 09:45:15 +01:00
|
|
|
- wakeup # set up wakeup methods for rtc etc.
|
2017-07-15 14:28:23 +02:00
|
|
|
- grub-config # configure grub
|
2017-07-30 15:21:05 +02:00
|
|
|
tags:
|
|
|
|
- always
|
2017-02-23 13:15:04 +01:00
|
|
|
|
|
|
|
handlers:
|
2017-11-12 19:07:21 +01:00
|
|
|
- import_tasks: handlers/main.yml
|