diff --git a/Manual.org b/Manual.org index 13a88a5..87a281a 100644 --- a/Manual.org +++ b/Manual.org @@ -150,7 +150,7 @@ apt-get update apt-get -y install ansible # 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 * Playbooks ** 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 # to play and eject optical media - grub-config # configure grub + tags: + - always handlers: - include: handlers/main.yml @@ -207,6 +209,8 @@ For a headless server installation ~yavdr07-headless.yml~ is a good choice - nfs-server - grub-config - autoinstall-satip + tags: + - always handlers: - include: handlers/main.yml #+END_SRC @@ -1432,6 +1436,7 @@ b'\xde\xad\xbe\xef' - tmux - kiosk-browser - read-edid + - python3-dbus2vdr - python3-yavdrfrontend #- yavdr-xorg #+END_SRC diff --git a/install-yavdr.sh b/install-yavdr.sh index d3bd2d8..f25b391 100755 --- a/install-yavdr.sh +++ b/install-yavdr.sh @@ -13,4 +13,4 @@ apt-get update apt-get -y install ansible # 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 diff --git a/roles/yavdr-xorg/tasks/setup-xorg.yml b/roles/yavdr-xorg/tasks/setup-xorg.yml index 2b41b18..b523a9f 100644 --- a/roles/yavdr-xorg/tasks/setup-xorg.yml +++ b/roles/yavdr-xorg/tasks/setup-xorg.yml @@ -36,5 +36,6 @@ - tmux - kiosk-browser - read-edid + - python3-dbus2vdr - python3-yavdrfrontend #- yavdr-xorg diff --git a/yavdr07-headless.yml b/yavdr07-headless.yml index 9de97fc..0b02614 100644 --- a/yavdr07-headless.yml +++ b/yavdr07-headless.yml @@ -14,5 +14,7 @@ - nfs-server - grub-config - autoinstall-satip + tags: + - always handlers: - include: handlers/main.yml diff --git a/yavdr07.yml b/yavdr07.yml index dcc8f1a..a610d19 100644 --- a/yavdr07.yml +++ b/yavdr07.yml @@ -26,6 +26,8 @@ - dvd # set up packages and a udev rule to allow kodi and other players # to play and eject optical media - grub-config # configure grub + tags: + - always handlers: - include: handlers/main.yml