[__runit] Add support for older Devuan systems #25
1 changed files with 8 additions and 1 deletions
|
@ -6,7 +6,14 @@ os="$(cat "${__global}/explorer/os")"
|
||||||
case "${os}" in
|
case "${os}" in
|
||||||
debian|devuan)
|
debian|devuan)
|
||||||
# zero-config sysvinit and systemd compatibility
|
# zero-config sysvinit and systemd compatibility
|
||||||
__package runit-run
|
os_version="$(cat "${__global}/explorer/os_version")"
|
||||||
|
debian_package="runit-run"
|
||||||
|
case "${os_version}" in
|
||||||
|
beowulf)
|
||||||
|
debian_package="runit"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
__package "${debian_package}"
|
||||||
;;
|
;;
|
||||||
freebsd)
|
freebsd)
|
||||||
__key_value \
|
__key_value \
|
||||||
|
|
Loading…
Reference in a new issue