Dirk Sarpe

Results 11 issues of Dirk Sarpe

### Steps to reproduce - firefox is configured to open `geo:` links with nextcloud instance that has the maps app enabled - enter geo:48.268569,5.690918 in address bar of firefox -...

The role [geerlingguy.awx](https://galaxy.ansible.com/geerlingguy/awx) required in `awx/requirements.yml` is deprecated. Since the installation of awx has been changed to a kubernetes operator and the [last few awx issues](https://github.com/geerlingguy/ansible-vagrant-examples/issues?q=is%3Aissue+awx) have been closed by...

planned

A draft how #131 could be fixed. Not sure if this is a good approach. When testing it in molecule adapt borg_install_method to `package`. The instances `archlinux-latest` and `almalinux-9` fail...

If `borg_install_method: package` on debian bullseye, borgmatic 1.5.12-2 is installed. Running `validate-borgmatic-config` with the otherwise unchanged settings from `molecule/default` scenario errors with: ``` Traceback (most recent call last): File "/usr/bin/validate-borgmatic-config",...

option is documented [upstream](https://torsion.org/borgmatic/docs/reference/configuration/)

##### SUMMARY The documentation title of ansible.posix.sysctl module says > Manage entries in sysctl.conf and for the parameter `sysctl_file` > Specifies the absolute path to `sysctl.conf`, if not `/etc/sysctl.conf`. But...

Fixes #51 Alternative would be to pin the versions of weasyprint setup.py ``` install_requires=[ 'mkdocs>=0.17', 'weasyprint>=0.44,=4.6.3' ], ``` and maybe mention it in README.md ``` 3. WeasyPrint (Version >=0.44 to

The html5.vim version shipped in the provim repo is out of date which results in the error ``` Unknown function: htmlcomplete#DetectOmniFlavor ``` when opening Markdown files. Installing the current version...

In `src/ansiblecmdb/render.py` imp is used, which has been deprecated in python 3.4 and removed in python 3.12, see https://docs.python.org/3.12/whatsnew/3.12.html#imp ```python import imp […] def _render_py(self, hosts, vars={}): module = imp.load_source('r',...

Replaces imp with importlib. based on - pull reqeust https://github.com/fboender/ansible-cmdb/pull/255 - instructions from https://docs.python.org/3.12/whatsnew/3.12.html#imp