Antonio Gurgel

Results 11 comments of Antonio Gurgel

The issue might not be with the plugin itself, but with beets' handling of the existence of multiple plugin folders. ## Background I'm on Void Linux, with beets installed as...

Would it not be simpler to uninstall `btrfs-progs` so as to not trip the `[ -x /bin/btrfs ]` test? ``` $ xbps-query -o $(which btrfs) btrfs-progs-5.11.1_1: /usr/bin/btrfs (regular file) ```

Both the facility and tag differences for `$SV/log/run` are [covered](https://github.com/void-linux/void-runit/blob/28f849335eed5db4787d3b7dc342dd4066b7183f/vlogger.8#L65): > If vlogger is executed as a log service for runit(8) or another daemontools like supervision suite it uses the...

I can reproduce this: ``` ❯ fd -t f . /etc/sv/issue-20 -X head ==> /etc/sv/issue-20/run /etc/sv/issue-20/log/run /usr/bin/sv ❯ sudo /etc/init.d/issue-20 status run: issue-20: (pid 8220) 44s; down: log: 1s, normally...

Ah, apologies for the presumption, you're way ahead of me: ``` ❯ ag -c const.c.char src/client.rs:1 src/module.rs:7 src/functions.rs:3 src/env.rs:3 ``` It seems that `client.rs` just had a missed spot.

LibreELEC 10.0.2, Kodi 19.4, Pi 4. All evidence in this thread points to an upstream API change. I'm trying @sualk's fix at `/nfsession/session/http_requests.py:174` but it doesn't seem to be taking...

I've emailed him so nobody else in the thread has to.

Untested, but: ```diff try: import pwd SYSTEM_USER = pwd.getpwuid(os.geteuid()).pw_name or SYSTEM_USER +except KeyError: + # Process' UID might not map to a user in cases such as running the Docker...