runit counterpart to systemd-inhibit?
I'm currently working on setting up a VM for Windows 10 with single GPU pass-through. Among the usual set of scripts needed for this to work is usually a systemd service containing the following to prevent the system from sleeping when libvirtd is active.
[Unit]
Description=Preventing sleep while libvirt domain "%i" is running
[Service]
Type=simple
ExecStart=/usr/bin/systemd-inhibit --what=sleep --why="Libvirt domain \"%i\" is running" --who=%U --mode=block sleep infinity
My question is, what would the runit equivalent for such a service be? Does runit have its own command to inhibit actions like Sleep with?