owncloud aktualisieren #1

Closed
fenris wants to merge 44 commits from task-377 into main
4 changed files with 11 additions and 2 deletions
Showing only changes of commit 2d7a0abd5d - Show all commits

View file

@ -1,6 +1,7 @@
[ [
{ {
"name": "show vars", "name": "show vars",
"when": "switch_debug",
"ansible.builtin.debug": { "ansible.builtin.debug": {
"var": "vars.cfg_authelia" "var": "vars.cfg_authelia"
} }

View file

@ -1,6 +1,7 @@
[ [
{ {
"name": "show vars", "name": "show vars",
"when": "switch_debug",
"ansible.builtin.debug": { "ansible.builtin.debug": {
"var": "vars.cfg_nginx" "var": "vars.cfg_nginx"
} }

View file

@ -1,4 +1,11 @@
[ [
{
"name": "show vars",
"when": "switch_debug",
"ansible.builtin.debug": {
"var": "vars.cfg_owncloud"
}
},
{ {
"name": "user", "name": "user",
"become": true, "become": true,

View file

@ -1,6 +1,6 @@
directives: directives:
connect-src: connect-src:
- '''self''' - '''self'''
{% if var_owncloud_authentication_kind == 'authelia' %} {% if cfg_owncloud.authentication.kind == 'authelia' %}
- '{{var_owncloud_authentication_data_authelia_url_base}}' - '{{cfg_owncloud.authentication.data.url_base}}'
{% endif %} {% endif %}