Fix syntax error in state value
This commit is contained in:
parent
71c2079f53
commit
b816a03d69
1010
Manual.html
1010
Manual.html
File diff suppressed because it is too large
Load Diff
@ -2360,7 +2360,7 @@ preferred_refreshrates:
|
||||
lineinfile:
|
||||
path: /etc/vdr/conf.avail/softhddevice.conf
|
||||
line: '-v va-api'
|
||||
state: present if intel_detected else absent
|
||||
state: '{{ "present" if intel_detected else "absent" }}'
|
||||
|
||||
- name: add a login shell for the user vdr
|
||||
user:
|
||||
|
@ -48,7 +48,7 @@
|
||||
lineinfile:
|
||||
path: /etc/vdr/conf.avail/softhddevice.conf
|
||||
line: '-v va-api'
|
||||
state: present if intel_detected else absent
|
||||
state: '{{ "present" if intel_detected else "absent" }}'
|
||||
|
||||
- name: add a login shell for the user vdr
|
||||
user:
|
||||
|
Loading…
Reference in New Issue
Block a user