21 lines
393 B
Plaintext
21 lines
393 B
Plaintext
|
#
|
||
|
# This script registers the metalog service into the
|
||
|
# 'default' runlevel, as required by OpenRC.
|
||
|
#
|
||
|
|
||
|
case "${ACTION}" in
|
||
|
pre)
|
||
|
;;
|
||
|
post)
|
||
|
[ ! -x sbin/rc-update ] && exit 0
|
||
|
[ ! -x sbin/rc-service ] && exit 0
|
||
|
|
||
|
if sbin/rc-service -e udev; then
|
||
|
echo "Registering ${PKGNAME} OpenRC service..."
|
||
|
sbin/rc-update add ${PKGNAME} default
|
||
|
[ $? -ne 0 ] && exit $?
|
||
|
sbin/rc-update -u
|
||
|
fi
|
||
|
;;
|
||
|
esac
|