Hi, Thanks for 1.0.4! Frequent releases helps to iterate on small improvements that I'm reminded of when a new release happens. The Debian packages now puts halt and reboot below /usr/libexec/shepherd/ like this: jas@kaka:~/src/shepherd$ ls -la /usr/libexec/shepherd/sbin/ totalt 16 drwxr-xr-x 2 root root 4096 17 apr 10.54 . drwxr-xr-x 3 root root 4096 19 mar 13.43 .. -rwxr-xr-x 1 root root 288 17 apr 09.24 halt -rwxr-xr-x 1 root root 290 17 apr 09.24 reboot lrwxrwxrwx 1 root root 4 17 apr 09.24 shutdown -> halt jas@kaka:~/src/shepherd$ This allows someone to use `PATH=/usr/libexec/shepherd/sbin:$PATH` to use Shepherd's halt and reboot commands. It is unclear to me why anyone would want that, but it seems conceviable, and I recall hearing from people who managed to use Shepherd as pid 1 on a Debian system. Man pages for these commands are installed as shepherd-halt.8 and shepherd-reboot.8 to not conflict with Debian's halt(8) and reboot(8). Maybe there is a better way to deal with that, but it seems better to ship them under another name than to not ship them at all, pending some better approach. The QA tooling complained about these manpages: W: shepherd: useless-whatis-entry [usr/share/man/man8/shepherd-halt.8.gz] N: N: The whatis entry for this manual page (the brief description found in the N: NAME section) is of the form: N: N: program - manual page for program N: N: This conveys no information about what the program is for and is N: repetitive. The short description should contain brief information about N: what the program is for to aid in searching with apropos and similar N: programs. N: N: If this manual page was generated by help2man, use the -n option to N: provide a more meaningful description. That is the same as for shepherd.1 and herd.1 that you patched earlier: https://issues.guix.gnu.org/76435 The attached patch solves the same issue but for halt.8 and reboot.8. This uses help2man's --include-opt instead which I think is a better mechanism (and allows the relevant SEE ALSO). What do you think? If this approach seems right, I may propose a patch to create doc/shepherd.1.h2m and doc/herd.1.h2m too, cleaning up Makefile.am slightly. /Simon