Miika Tuominen

Results 20 comments of Miika Tuominen

I also see all memory related stats as 0, along with the error message of the title. (even though I have cgroup_enable=memory, on Deb 12). Would be cool to get...

Also seeing this on an embedded system with just busybox 1.36.1, with musl 1.2.5. I cannot connect to any domain, even https://github.com or https://google.com. Sometimes the output is just ```...

Okay, I definitely see your point about not taking contributions. However, it would still be very much appreciated if you could make the code public in a repository and license...

presenting ~/.local/bin/mylock ```sh #!/bin/sh set -euo pipefail ( until fprintd-verify -f right-ring-finger; do echo "Failed to verify fingerprint at $(date)" | systemd-cat done echo "Unlocked at $(date)" | systemd-cat pkill...

@Jackaed good observation, I don't really use fprintd for anything else :smile:. To fix the dangling fprint-verify, remove the `exec` and add these two lines: ```bash kill $(jobs -p) pkill...

That's why there's the until loop https://linuxize.com/post/bash-until-loop/

In bash, if the exit code is non-zero, it usually means a failure. fprintd-verify also works like this and returns 0 for success, and 1 for failure. ``` ❯ fprintd-verify...

Interesting if it behaves that way. I'm using fprintd-1.94.2-8.fc39.x86_64 from Fedora. Also, I'm aware the script is a bit of a hack and I'm not forcing anyone to use it....

Took me some time to figure this out since the error message I get is just ``` /nix/store/.../bin/.disko-install-wrapped: line 234: artifacts[1]: unbound variable ```