From 2fb0e0e0de3267c4460c8bca895ed403fe93c923 Mon Sep 17 00:00:00 2001 From: javalsai Date: Wed, 4 Sep 2024 20:30:41 +0200 Subject: [PATCH] oops: add openrc install detection --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index b72d14e..311525d 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,8 @@ install-service: make install-service-dinit; \ elif command -v sv &> /dev/null; then \ make install-service-runit; \ + elif command -v rc-update &> /dev/null; then \ + make install-service-openrc; \ else \ printf '\x1b[1;31m%s\x1b[0m\n' "Unknown init system, skipping service install..."; \ fi