2017-06-21 12:46:51 +02:00
|
|
|
---
|
2017-02-23 13:15:04 +01:00
|
|
|
# file: group_vars/all
|
|
|
|
|
|
|
|
# this is the standard text to put in templates
|
2017-02-22 15:27:48 +01:00
|
|
|
ansible_managed_file: "*** YAVDR: ANSIBLE MANAGED FILE ***"
|
|
|
|
branch: unstable
|
|
|
|
ppa_owner: 'ppa:yavdr'
|
2017-07-30 14:54:43 +02:00
|
|
|
# add the following PPAs
|
2017-02-22 15:27:48 +01:00
|
|
|
repositories:
|
|
|
|
- '{{ ppa_owner }}/main'
|
|
|
|
- '{{ ppa_owner }}/unstable-main'
|
|
|
|
- '{{ ppa_owner }}/{{branch}}-vdr'
|
|
|
|
- '{{ ppa_owner }}/{{branch}}-yavdr'
|
|
|
|
- '{{ ppa_owner }}/{{branch}}-kodi'
|
2017-02-23 13:15:04 +01:00
|
|
|
# properties of the user vdr and vdr-related options
|
2017-02-22 15:27:48 +01:00
|
|
|
vdr:
|
|
|
|
user: vdr
|
|
|
|
group: vdr
|
|
|
|
uid: 666
|
|
|
|
gid: 666
|
|
|
|
home: /var/lib/vdr
|
2017-07-08 13:37:35 +02:00
|
|
|
confdir: /var/lib/vdr
|
2017-02-22 15:27:48 +01:00
|
|
|
recdir: /srv/vdr/video
|
|
|
|
hide_first_recording_level: false
|
2017-03-13 10:40:35 +01:00
|
|
|
safe_dirnames: true # escape characters (useful for windows clients and FAT/NTFS file systems)
|
2017-02-22 15:27:48 +01:00
|
|
|
override_vdr_charset: false
|
|
|
|
|
2017-02-23 13:15:04 +01:00
|
|
|
# add the vdr plugins you want to install
|
2017-02-22 15:27:48 +01:00
|
|
|
vdr_plugins:
|
|
|
|
- vdr-plugin-devstatus
|
|
|
|
- vdr-plugin-markad
|
|
|
|
- vdr-plugin-restfulapi
|
2017-06-19 07:48:25 +02:00
|
|
|
- vdr-plugin-softhddevice-vpp
|
2017-03-13 10:40:35 +01:00
|
|
|
# dictionary of directories for (shared) files. Automatically exported via NFS and Samba if those roles are enabled
|
|
|
|
media_dirs:
|
|
|
|
audio: /srv/audio
|
|
|
|
video: /srv/audio
|
|
|
|
pictures: /srv/picture
|
|
|
|
files: /srv/files
|
|
|
|
backups: /srv/backups
|
|
|
|
recordings: '{{ vdr.recdir }}'
|
|
|
|
nfs:
|
2017-03-16 10:26:32 +01:00
|
|
|
insecure: false # set to true for OS X clients or if you plan to use libnfs as unprivileged user (e.g. KODI)
|
2017-02-23 13:15:04 +01:00
|
|
|
samba:
|
|
|
|
workgroup: YAVDR
|
2017-03-16 10:26:32 +01:00
|
|
|
windows_compatible: '{{ vdr.safe_dirnames }}' # set to true to disable unix extensions, enable follow symlinks and wide links
|
2017-02-23 13:15:04 +01:00
|
|
|
# additional packages you want to install
|
2017-02-22 15:27:48 +01:00
|
|
|
extra_packages:
|
|
|
|
- vim
|
2017-07-16 08:29:13 +02:00
|
|
|
- htop
|
2017-02-22 15:27:48 +01:00
|
|
|
- tree
|
|
|
|
- w-scan
|
2017-07-15 14:28:23 +02:00
|
|
|
- bpython
|
2017-03-02 16:01:52 +01:00
|
|
|
- bpython3
|
2017-07-16 09:27:04 +02:00
|
|
|
frontend: vdr
|
2017-03-13 10:40:35 +01:00
|
|
|
#system:
|
|
|
|
# shutdown: poweroff
|
|
|
|
grub:
|
|
|
|
timeout: 0
|
|
|
|
boot_options: quiet nosplash
|