SysV init script for incus-agent

As we all know, the install.sh script of incus-agent can only be executed on systemd systems:

......
if [ "${TARGET}" = "" ]; then
    echo "This script only works on systemd systems"
    exit 1
fi
......

Therefore, I tried to write an init script for systems using SysV init, along with an installation script, which may be useful for people running these systems:

MoltenArmor/incus-agent-sysvinit: SysV init script for incus-agent.

I’ve done some testing on my Devuan VM and it works just fine. If you encounter any bugs, please open an Issue.

In the future, I may continue to write a Runit script.

4 Likes