Fix creation of user arg

json.loads is picky in that is expects true json, not yaml from ansible
This commit is contained in:
Fabian Koller 2020-12-29 23:54:22 +01:00
parent 14f87f5aee
commit e4e4efcba7
No known key found for this signature in database
GPG Key ID: 4EFE4C946404B82A

View File

@ -183,8 +183,8 @@
line: "PAPERLESS_FILENAME_FORMAT={{ paperlessng_filename_format }}"
- regexp: "^#?PAPERLESS_OCR_LANGUAGE="
line: "PAPERLESS_OCR_LANGUAGE={{ paperlessng_ocr_languages | join('+') }}"
- regexp: "^#PAPERLESS_OCR_USER_ARG="
line: "PAPERLESS_OCR_USER_ARG={{ paperlessng_ocrmypdf_args | combine({'jbig2_lossy': true} if paperlessng_big2enc_lossy else {}) }}"
- regexp: "^#PAPERLESS_OCR_USER_ARGS="
line: "PAPERLESS_OCR_USER_ARGS={{ paperlessng_ocrmypdf_args | combine({'jbig2_lossy': true} if paperlessng_big2enc_lossy else {}) | to_json }}"
- regexp: "^#?PAPERLESS_TIME_ZONE="
line: "PAPERLESS_TIME_ZONE={{ paperlessng_time_zone }}"
no_log: yes