oops: add openrc install detection

This commit is contained in:
javalsai 2024-09-04 20:30:41 +02:00
parent ae4e4df7cd
commit 2fb0e0e0de
Signed by: javalsai
SSH Key Fingerprint: SHA256:3G83yKhBUWVABVX/vPWH88xnK4+ptMtHkZGCRXD4Mk8

View File

@ -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