fix padline option for source blocks

This commit is contained in:
Alexander Grothe
2017-06-21 12:46:51 +02:00
parent 2782daf931
commit d45d4ff643
20 changed files with 437 additions and 109 deletions

View File

@@ -61,3 +61,17 @@
with_items:
'{{ vdr_plugins | default({}) }}'
notify: [ 'Restart VDR' ]
- name: ensure vdr is stopped
systemd:
name: vdr.service
state: stopped
notify: [ 'Start VDR' ]
- name: 'vdr configuration | expand template for remote.conf'
template:
src: templates/remote.conf.j2
dest: '/var/lib/vdr/remote.conf'
owner: '{{ vdr.user }}'
group: '{{ vdr.group }}'
mode: 0644