Markus Bergholz
Markus Bergholz
> I tried cloning the git repo, editing the bindings/default file to replace control with alt in the bindings to select next / previous word. I then recompiled the program...
`libmagickcore-6.q16-6-extra` is missing and solves the issue. Here is the part of the admin manual that mentioned the dependency: https://docs.nextcloud.com/server/21/admin_manual/configuration_server/theming.html?highlight=libmagickcore%20q16%20extra#theming-of-icons > SVG support for imagick (e.g. libmagickcore-6.q16-3-extra on Debian 9...
> And for those who use docker with the nextcloud:fpm-alpine image? > It would be something like ... > > Create Dockerfile > > FROM nextcloud:fpm-alpine > RUN apk update...
Just make a pull request ;)
Consider that installing dependencies in a running container is not a persistent fix. You must build your own image or it must go to the upstream image.
```diff diff --git a/21.0/apache/Dockerfile b/21.0/apache/Dockerfile index 52fab6e..fc548ac 100644 --- a/21.0/apache/Dockerfile +++ b/21.0/apache/Dockerfile @@ -9,6 +9,7 @@ RUN set -ex; \ rsync \ bzip2 \ busybox-static \ + libmagickcore-6.q16-6-extra \ ;...
> Should we keep this issue open although it's a nextcloud server's issue? In case people search before open a new issue, it would prevent duplicates... But I don't mind......
> Hello, @markuman slightly_smiling_face Thank you for contacting us. > > This query reports a result for your sample because, in addition to having a rule that verifies if `retention`...
Using a default value results also in a false-positiv (imo). ```yml retention: "{{ retention | default(14) }}" ```
I fully agree @pgrenaud, thx for summarize and clearify the situation. * https://docs.ansible.com/ansible/latest/collections/community/aws/s3_lifecycle_module.html * https://github.com/ansible-collections/community.aws/blob/main/plugins/modules/s3_lifecycle.py * https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#S3.Client.put_bucket_lifecycle I guess expanding the existing module with two more parameters is not a...