openrc option added

This commit is contained in:
Luke Smith 2019-10-17 17:31:01 -04:00
parent 8e947521aa
commit dfddd350ed
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252

View File

@ -129,6 +129,7 @@ putgitrepo() { # Downlods a gitrepo $1 and places the files in $2 only overwriti
case "$(readlink /sbin/init)" in
runit*) serviceinit(){ ln -s "/etc/runit/sv/$1" /run/runit/service; sv restart "$1" ;} ;;
openrc*) serviceinit() { rc-update add "$1" default ;} ;;
*) serviceinit(){ systemctl enable "$1"; systemctl start "$1" ;} ;;
esac