jankowa
jankowa
Unfortunately not solved yet. It looks like the problem is the mail function in core not in bureaucracy. Does anyone know if this worked in earlyer versions? In 2018-04-22 it...
If this should be fixed on nginx level is a good question. I'm also not shure about. On the one hand: in an organization where everybody can see everybodies UID...
one more idea: Since one can change `owncloud__nginx__dependent_servers:` it's also possible to harden this in group or host config. But still maybe it's a good idea to harden this by...
Hi @ypid , this is interesting because I can reproduce the behavior also only in one of our nextcloud instances. Since normally they behave like you describe one is listing...
I couldn't reproduce neither. No idea what was wrong in this specific environment.
Ok, we could reproduce it again and triggered it down to the issue that under special circumstances, there are not enough seeds generated here: https://github.com/debops/debops/blob/526110b3073d4855395cfa5c7879674db6a700f6/ansible/roles/cron/defaults/main.yml#L60-L77 In our case we have...
this works: ``` diff --git a/ansible/roles/cron/defaults/main.yml b/ansible/roles/cron/defaults/main.yml index c6d485864..6df9b0a6d 100644 --- a/ansible/roles/cron/defaults/main.yml +++ b/ansible/roles/cron/defaults/main.yml @@ -71,6 +71,9 @@ cron__crontab_offset_seeds: '{{ ansible_local.cron.crontab_offset_seeds + (ansible_default_ipv4.values() | d([])) | list + [ ansible_machine_id|d(),...
i just could reproduce it with a fresh upgraded server (bullseye to buster) without the debops builtin dist-upgrade tool. After upgrading manually to bullseye debops fails with the same error.
ok, responsible is the wrong python interpreter in the fact files: python3.7 which doesn't exists any more on bullseye ``` cd /etc/ansible/facts.d for i in *; do sed -i 's|^#!/usr/bin/python3.7|#!/usr/bin/python3.9|g'...
I can reproduce the issue. Adding the line `{% if interface.no_addresses is undefined or not interface.no_addresses|bool %}` again fixes it for me too.