add tasks to playbooks, add dependency for on_vdr script to xorg install

This commit is contained in:
Alexander Grothe 2017-07-30 15:21:05 +02:00
parent 264a2f2252
commit 9c839f156d
5 changed files with 12 additions and 2 deletions

View File

@ -150,7 +150,7 @@ apt-get update
apt-get -y install ansible apt-get -y install ansible
# TODO: run ansible on local host # TODO: run ansible on local host
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags=install
#+END_SRC #+END_SRC
* Playbooks * Playbooks
** yavdr07.yml ** yavdr07.yml
@ -184,6 +184,8 @@ The ~yavdr07.yml~ playbook sets up a fully-featured yaVDR installation:
- dvd # set up packages and a udev rule to allow kodi and other players - dvd # set up packages and a udev rule to allow kodi and other players
# to play and eject optical media # to play and eject optical media
- grub-config # configure grub - grub-config # configure grub
tags:
- always
handlers: handlers:
- include: handlers/main.yml - include: handlers/main.yml
@ -207,6 +209,8 @@ For a headless server installation ~yavdr07-headless.yml~ is a good choice
- nfs-server - nfs-server
- grub-config - grub-config
- autoinstall-satip - autoinstall-satip
tags:
- always
handlers: handlers:
- include: handlers/main.yml - include: handlers/main.yml
#+END_SRC #+END_SRC
@ -1432,6 +1436,7 @@ b'\xde\xad\xbe\xef'
- tmux - tmux
- kiosk-browser - kiosk-browser
- read-edid - read-edid
- python3-dbus2vdr
- python3-yavdrfrontend - python3-yavdrfrontend
#- yavdr-xorg #- yavdr-xorg
#+END_SRC #+END_SRC

View File

@ -13,4 +13,4 @@ apt-get update
apt-get -y install ansible apt-get -y install ansible
# TODO: run ansible on local host # TODO: run ansible on local host
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags=install

View File

@ -36,5 +36,6 @@
- tmux - tmux
- kiosk-browser - kiosk-browser
- read-edid - read-edid
- python3-dbus2vdr
- python3-yavdrfrontend - python3-yavdrfrontend
#- yavdr-xorg #- yavdr-xorg

View File

@ -14,5 +14,7 @@
- nfs-server - nfs-server
- grub-config - grub-config
- autoinstall-satip - autoinstall-satip
tags:
- always
handlers: handlers:
- include: handlers/main.yml - include: handlers/main.yml

View File

@ -26,6 +26,8 @@
- dvd # set up packages and a udev rule to allow kodi and other players - dvd # set up packages and a udev rule to allow kodi and other players
# to play and eject optical media # to play and eject optical media
- grub-config # configure grub - grub-config # configure grub
tags:
- always
handlers: handlers:
- include: handlers/main.yml - include: handlers/main.yml