vp-build/templates/metalog/INSTALL
Juan RP ab62d12294 metalog: fix service name in INSTALL/REMOVE scripts.
--HG--
extra : convert_revision : 40b285acb49a2b5ebc1c89ef00ef78fd740aaaf7
2009-05-04 22:30:53 +02:00

21 lines
399 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 ${PKGNAME}; then
echo "Registering ${PKGNAME} OpenRC service..."
sbin/rc-update add ${PKGNAME} default
[ $? -ne 0 ] && exit $?
sbin/rc-update -u
fi
;;
esac