From 97999797c064796bf8aa5842d67bfc2c5a50e4ee Mon Sep 17 00:00:00 2001 From: Alexander Grothe Date: Mon, 31 Jul 2017 08:47:18 +0200 Subject: [PATCH] Add missing quotes --- Manual.org | 2 +- roles/yavdr-xorg/tasks/setup-xorg.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Manual.org b/Manual.org index 070389a..b35f779 100644 --- a/Manual.org +++ b/Manual.org @@ -1418,7 +1418,7 @@ b'\xde\xad\xbe\xef' - name: start softhddevice detached and set audio to pulseaudio lineinfile: path: /etc/vdr/conf.avail/softhddevice.conf - line: {{ item }} + line: '{{ item }}' with_items: - '-D' # - '-a pulse' # do we need this with our existing asound.conf? diff --git a/roles/yavdr-xorg/tasks/setup-xorg.yml b/roles/yavdr-xorg/tasks/setup-xorg.yml index 8f46e1f..cda8132 100644 --- a/roles/yavdr-xorg/tasks/setup-xorg.yml +++ b/roles/yavdr-xorg/tasks/setup-xorg.yml @@ -16,7 +16,7 @@ - name: start softhddevice detached and set audio to pulseaudio lineinfile: path: /etc/vdr/conf.avail/softhddevice.conf - line: {{ item }} + line: '{{ item }}' with_items: - '-D' # - '-a pulse' # do we need this with our existing asound.conf?