61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
---
|
|
# file: group_vars/all
|
|
|
|
branch: experimental
|
|
ppa_owner: 'ppa:yavdr'
|
|
# add the following PPAs
|
|
repositories:
|
|
- '{{ ppa_owner }}/{{branch}}-main'
|
|
- '{{ ppa_owner }}/{{branch}}-vdr'
|
|
#- '{{ ppa_owner }}/{{branch}}-yavdr'
|
|
#- '{{ ppa_owner }}/{{branch}}-kodi'
|
|
# properties of the user vdr and vdr-related options
|
|
# NOTE: user name, uid and confdir must match the values set by the vdr package
|
|
vdr:
|
|
user: vdr
|
|
group: vdr
|
|
uid: 666
|
|
gid: 666
|
|
home: /var/lib/vdr
|
|
confdir: /var/lib/vdr
|
|
recdir: /srv/vdr/video
|
|
hide_first_recording_level: false
|
|
safe_dirnames: true # escape characters (useful for windows clients and FAT/NTFS file systems)
|
|
override_vdr_charset: false
|
|
|
|
# add the vdr plugins you want to install
|
|
vdr_plugins:
|
|
- vdr-plugin-devstatus
|
|
- vdr-plugin-markad
|
|
- vdr-plugin-restfulapi
|
|
- vdr-plugin-softhddevice-vpp
|
|
# dictionary of directories for (shared) files. Automatically exported via NFS and Samba if those roles are enabled
|
|
media_dirs:
|
|
audio: /srv/audio
|
|
video: /srv/video
|
|
pictures: /srv/picture
|
|
files: /srv/files
|
|
backups: /srv/backups
|
|
recordings: '{{ vdr.recdir }}'
|
|
nfs:
|
|
insecure: false # set to true for OS X clients or if you plan to use libnfs as unprivileged user (e.g. KODI)
|
|
samba:
|
|
workgroup: YAVDR
|
|
windows_compatible: '{{ vdr.safe_dirnames }}' # set to true to disable unix extensions, enable follow symlinks and wide links
|
|
# additional packages you want to install
|
|
extra_packages:
|
|
- bpython
|
|
- bpython3
|
|
- htop
|
|
- tree
|
|
- vim
|
|
- w-scan
|
|
- plymouth-theme-yavdr-logo
|
|
frontend: vdr
|
|
#system:
|
|
# shutdown: poweroff
|
|
wakeup_method: acpiwakeup
|
|
grub:
|
|
timeout: 0
|
|
boot_options: quiet splash
|