74 lines
2.0 KiB
YAML
74 lines
2.0 KiB
YAML
---
|
|
# file: roles/yavdr-xorg/tasks/setup-xorg.yml
|
|
- name: create directories for systemd drop-in files
|
|
file:
|
|
dest: '{{ item }}'
|
|
state: directory
|
|
with_items:
|
|
- "/etc/systemd/system/x@.service.d/"
|
|
- "/etc/systemd/system/vdr.service.d/"
|
|
- "/etc/systemd/system/user@{{ vdr.uid }}.service.d/"
|
|
|
|
- name: systemd-drop-in | add dependency to X-server for vdr.service
|
|
template:
|
|
src: templates/vdr-xorg.conf
|
|
dest: /etc/systemd/system/vdr.service.d/vdr-xorg.conf
|
|
|
|
- name: systemd-drop-in | start x@.service before xlogin@.service
|
|
template:
|
|
src: templates/x@service.d/xlogin.conf.j2
|
|
dest: /etc/systemd/system/x@.service.d/xlogin.conf
|
|
|
|
- name: systemd-drop-in | load environment file for vdr.service
|
|
template:
|
|
src: templates/systemd/vdr-environ.j2
|
|
dest: /etc/systemd/system/vdr.service.d/load-environ.conf
|
|
|
|
- name: systemd-drop-in | user@{{ vdr.uid }}.service depends on x@vt7.service
|
|
template:
|
|
src: templates/user@666.service.d/x-dependency.conf.j2
|
|
dest: '/etc/systemd/system/user@{{ vdr.uid }}.service.d/x-dependency.conf'
|
|
|
|
- name: vdr-config | start softhddevice detached and set audio to pulseaudio
|
|
lineinfile:
|
|
path: /etc/vdr/conf.avail/softhddevice.conf
|
|
line: '{{ item }}'
|
|
with_items:
|
|
- '-D'
|
|
# - '-a pulse' # do we need this with our existing asound.conf?
|
|
|
|
- name: add a login shell for the user vdr
|
|
user:
|
|
name: '{{ vdr.user }}'
|
|
shell: '/bin/bash'
|
|
state: present
|
|
uid: '{{ vdr.uid }}'
|
|
groups: '{{ vdr.group }}'
|
|
append: yes
|
|
|
|
- name: apt | install packages for xorg
|
|
apt:
|
|
name: '{{ item }}'
|
|
state: present
|
|
with_items:
|
|
- xlogin
|
|
- xorg
|
|
- xserver-xorg-input-all
|
|
- xserver-xorg-video-all
|
|
- openbox
|
|
- python3-dbus2vdr
|
|
- python3-yavdrfrontend
|
|
- read-edid
|
|
- tmux
|
|
- vdr-plugin-desktop
|
|
#- yavdr-xorg
|
|
|
|
- name: apt | install desktop programs
|
|
apt:
|
|
name: '{{ item }}'
|
|
state: present
|
|
with_items:
|
|
- xterm
|
|
- firefox
|
|
- kiosk-browser
|