ansible-role-calibre/templates/env.calibre.conf.j2
2023-06-09 15:41:22 +02:00

14 lines
501 B
Django/Jinja

# Add environment variables for calibre here
# Note: This is a .ini file format
{% if calibre_user_id is defined and calibre_user_id != "" %}PUID={{ calibre_user_id }}{%endif%}
{% if calibre_group_id is defined and calibre_group_id != "" %}GUID={{ calibre_group_id }}{%endif%}
TZ={{ calibre_timezone }}
{% if calibre_has_convertor == true %}
DOCKER_MODS=linuxserver/mods:universal-calibre #optional
{% endif %}
{% if calibre_relax_oauth == true %}
OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
{% endif %}