Martijn Hemeryck

Results 20 comments of Martijn Hemeryck

FYI: I use a similar mechanism, but using `gpg-agent` instead instead of this custom yubikey agent: ``` export SSH_AUTH_SOCK="/run/user/$(id -u)/gnupg/S.gpg-agent.ssh ``` The key is stored as a GPG key on...

> I use gpg-agent as my ssh agent and even with SSH_AUTH_SOCK set, k3sup still wants a key under $HOME/.ssh Yes, it's the same issue I am facing.

I have a somehow related issue in the sense that I don't store any ssh key locally on my machine. Instead, I have my gpg auth subkey on a smart...

Did try this both on my local system (local time CET) and within the container (UTC) ```python import datetime item = {"date": "2022-01-17T12:47:23+01:00"} d = datetime.datetime.strptime(item["date"], "%Y-%m-%dT%H:%M:%S%z").replace(tzinfo=None) (d - datetime.datetime.now()).days...

> This will require all integrations to be changed though. As timezone-aware objects can not be compared to timezone-naive objects. > > I'll have a look into the impact of...

Hey, thanks for your reply! I wouldn't necessarily mind if would leave these tests out for now. I was intending on looking into this library again since I wanted to...

In #48 you mentioned you could need some help with implementing this. Just curious if you could elaborate a bit more on this. Is this about writing a generic TCP...

Sorry for the late reply, only now had the first chance to really look at how the code was structured. I will probably focus more on #48 for now, since...

Not quite sure we should still go for this, as we will probably need more low-level access to the GPIO for setting up the modbus server in the first place....

Another related issue is really the robustness of this service; in case MQTT or modbus breaks down, it should nicely wait instead of crash and burn.