Adam Chovanec

Results 22 comments of Adam Chovanec

> ansible 2.7.0 > > the problem with the synchronize module is still present. It blindly calls `sudo rsync` without the ability to take a password if the `become_user` does...

This is a duplicate of [this issue](https://github.com/P0cL4bs/kadimus/issues/18). I installed libcurl4-gnutls-dev and libssh-gcrypt-4, even though I already had other packages with libcurl and libssh. Make still failed though.

That's another possible workaround, but I feel like qtile should notice that the keyboard layout has changed and adjust the keybinds. I have a working configuration and because two workaround...

I have just stumbled upon this too. Not a nice message when user clicks the wrong link: ![2024-02-25 22-04-40](https://github.com/Yubico/yubico-pam/assets/23148601/68d3ba02-2caa-4cab-a427-4a306969b4c1)

Thanks for the MR, because your MR got closed, I opened mine to fix the issue.

Hello, is there any progress on this issue?

I wish this was given a higher priority. People quite often RT someone or link to another post. Clicking on the link in the App opens web browser, even if...

Indeed, the bug is still present. Is there any additional info we can provide? The bug also affects the Flatpak (version 1.21.2).

An example use-case: ```python class MyPlugin(Plugin): def init(self): self.random_ips = iter(ipaddress.IPv4Network("10.0.0.0/8")) def headers_callback(self): return [f"X-Forwarded-For: {next(self.random_ips)}"] ```

Here is my build script in Docker. Click to open ```Dockerfile FROM ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive ARG BUILD_PREFIX=/builds/build/ RUN mkdir -p ${BUILD_PREFIX} ARG CLONE_DIR=/builds/clone RUN mkdir -p ${CLONE_DIR} ####################### # COMBINED...