Browse Source

[__runit] Add support for older Devuan systems

master
evilham 1 month ago
parent
commit
239a1f20cf
Signed by: evilham
GPG Key ID: AE3EE30D970886BF
  1. 9
      type/__runit/manifest

9
type/__runit/manifest

@ -6,7 +6,14 @@ os="$(cat "${__global}/explorer/os")"
case "${os}" in
debian|devuan)
# 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)
__key_value \

Loading…
Cancel
Save