There is a new pull request by akarelas against master on the void-packages repository https://github.com/akarelas/void-packages pr-akarelas-incus https://github.com/void-linux/void-packages/pull/51609 incus: fix check script #### Testing the changes - I tested the changes in this PR: **YES** #### Reason for making it The line `exec 2>&1` in the beginning of `incus-user/check` would stop the execution of the script right there, and would return a non-zero value, making `sv restart incus-user` show a timeout (after 7 seconds), like this: ``` -bash-5.2# sv start incus-user timeout: run: incus-user: (pid 9181) 7s ``` Placing `2>&1` at the right point, the execution of `sv restart incus-user` is like this: ``` -bash-5.2# sv restart incus-user ok: run: incus-user: (pid 9370) 0s ``` ...in less than a second. A patch file from https://github.com/void-linux/void-packages/pull/51609.patch is attached