Add template for /etc/default/vdr
This commit is contained in:
parent
202fb89165
commit
1542c64c5a
32
Manual.org
32
Manual.org
@ -389,6 +389,17 @@ vdr:
|
|||||||
safe_dirnames: true # escape characters (useful for windows clients and FAT/NTFS file systems)
|
safe_dirnames: true # escape characters (useful for windows clients and FAT/NTFS file systems)
|
||||||
override_vdr_charset: false
|
override_vdr_charset: false
|
||||||
|
|
||||||
|
# optional additional hosts and subnets for svdrphosts.conf
|
||||||
|
#
|
||||||
|
# vdr_svdrphosts:
|
||||||
|
# - 192.168.0.0/24
|
||||||
|
|
||||||
|
# copy channels.conf from a local file
|
||||||
|
# vdr_channels_conf: /path/to/channels.conf
|
||||||
|
|
||||||
|
# download channels.conf from a given url (supports HTTP(S) and FTP)
|
||||||
|
# vdr_channels_conf_url: http://example.com/vdr/channels.conf
|
||||||
|
|
||||||
# add the vdr plugins you want to install
|
# add the vdr plugins you want to install
|
||||||
vdr_plugins:
|
vdr_plugins:
|
||||||
- vdr-plugin-devstatus
|
- vdr-plugin-devstatus
|
||||||
@ -450,6 +461,11 @@ extra_packages:
|
|||||||
:END:
|
:END:
|
||||||
#+BEGIN_SRC yaml :tangle group_vars/all :mkdirp yes
|
#+BEGIN_SRC yaml :tangle group_vars/all :mkdirp yes
|
||||||
frontend: vdr
|
frontend: vdr
|
||||||
|
|
||||||
|
# vdr shutdown command - SHUTDOWNCMD variable in /etc/default/vdr
|
||||||
|
# for standby use "/bin/systemctl suspend"
|
||||||
|
vdr_shutdown_command: poweroff
|
||||||
|
|
||||||
#system:
|
#system:
|
||||||
# shutdown: poweroff
|
# shutdown: poweroff
|
||||||
wakeup_method: acpiwakeup
|
wakeup_method: acpiwakeup
|
||||||
@ -1131,6 +1147,12 @@ The additional plugins to install can be set in the variable ~{{vdr_plugins}}~ i
|
|||||||
owner: '{{ vdr.user }}'
|
owner: '{{ vdr.user }}'
|
||||||
group: '{{ vdr.group }}'
|
group: '{{ vdr.group }}'
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
|
||||||
|
- name: "vdr configuration | /etc/default/vdr"
|
||||||
|
template:
|
||||||
|
src: templates/default_vdr.j2
|
||||||
|
dest: /etc/default/vdr
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
**** start vdr after network-online.target
|
**** start vdr after network-online.target
|
||||||
@ -1162,6 +1184,16 @@ The additional plugins to install can be set in the variable ~{{vdr_plugins}}~ i
|
|||||||
After=network-online.target
|
After=network-online.target
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
**** /etc/default/vdr
|
||||||
|
#+BEGIN_SRC jinja2 :tangle roles/vdr/templates/default_vdr.j2 :mkdirp yes
|
||||||
|
{{ ansible_managed | comment }}
|
||||||
|
# /etc/default/vdr
|
||||||
|
#
|
||||||
|
# See also /usr/share/doc/vdr/README.Debian.gz
|
||||||
|
#
|
||||||
|
|
||||||
|
SHUTDOWNCMD="{{ vdr_shutdown_command }}"
|
||||||
|
#+END_SRC
|
||||||
**** svdrphosts.conf
|
**** svdrphosts.conf
|
||||||
#+BEGIN_SRC jinja2 :tangle roles/vdr/templates/svdrphosts.conf.j2 :mkdirp yes
|
#+BEGIN_SRC jinja2 :tangle roles/vdr/templates/svdrphosts.conf.j2 :mkdirp yes
|
||||||
{{ ansible_managed | comment }}
|
{{ ansible_managed | comment }}
|
||||||
|
@ -23,6 +23,17 @@ vdr:
|
|||||||
safe_dirnames: true # escape characters (useful for windows clients and FAT/NTFS file systems)
|
safe_dirnames: true # escape characters (useful for windows clients and FAT/NTFS file systems)
|
||||||
override_vdr_charset: false
|
override_vdr_charset: false
|
||||||
|
|
||||||
|
# optional additional hosts and subnets for svdrphosts.conf
|
||||||
|
#
|
||||||
|
# vdr_svdrphosts:
|
||||||
|
# - 192.168.0.0/24
|
||||||
|
|
||||||
|
# copy channels.conf from a local file
|
||||||
|
# vdr_channels_conf: /path/to/channels.conf
|
||||||
|
|
||||||
|
# download channels.conf from a given url (supports HTTP(S) and FTP)
|
||||||
|
# vdr_channels_conf_url: http://example.com/vdr/channels.conf
|
||||||
|
|
||||||
# add the vdr plugins you want to install
|
# add the vdr plugins you want to install
|
||||||
vdr_plugins:
|
vdr_plugins:
|
||||||
- vdr-plugin-devstatus
|
- vdr-plugin-devstatus
|
||||||
@ -54,6 +65,11 @@ extra_packages:
|
|||||||
- vdr-addon-lifeguard-ng
|
- vdr-addon-lifeguard-ng
|
||||||
- vdrpbd
|
- vdrpbd
|
||||||
frontend: vdr
|
frontend: vdr
|
||||||
|
|
||||||
|
# vdr shutdown command - SHUTDOWNCMD variable in /etc/default/vdr
|
||||||
|
# for standby use "/bin/systemctl suspend"
|
||||||
|
vdr_shutdown_command: poweroff
|
||||||
|
|
||||||
#system:
|
#system:
|
||||||
# shutdown: poweroff
|
# shutdown: poweroff
|
||||||
wakeup_method: acpiwakeup
|
wakeup_method: acpiwakeup
|
||||||
|
@ -102,6 +102,11 @@
|
|||||||
owner: '{{ vdr.user }}'
|
owner: '{{ vdr.user }}'
|
||||||
group: '{{ vdr.group }}'
|
group: '{{ vdr.group }}'
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
|
||||||
|
- name: "vdr configuration | /etc/default/vdr"
|
||||||
|
template:
|
||||||
|
src: templates/default_vdr.j2
|
||||||
|
dest: /etc/default/vdr
|
||||||
- name: create directory for vdr.service systemd drop-in files
|
- name: create directory for vdr.service systemd drop-in files
|
||||||
file:
|
file:
|
||||||
dest: '{{ item }}'
|
dest: '{{ item }}'
|
||||||
|
7
roles/vdr/templates/default_vdr.j2
Normal file
7
roles/vdr/templates/default_vdr.j2
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{{ ansible_managed | comment }}
|
||||||
|
# /etc/default/vdr
|
||||||
|
#
|
||||||
|
# See also /usr/share/doc/vdr/README.Debian.gz
|
||||||
|
#
|
||||||
|
|
||||||
|
SHUTDOWNCMD="{{ vdr_shutdown_command }}"
|
Loading…
Reference in New Issue
Block a user