commit dfddd350ed69779ad709fe95ee80526fc782eedf
parent 8e947521aaa85e3400739ed1574ad5906e884663
Author: Luke Smith <luke@lukesmith.xyz>
Date: Thu, 17 Oct 2019 17:31:01 -0400
openrc option added
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/larbs.sh b/larbs.sh
@@ -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