metalog: fix service name in INSTALL/REMOVE scripts.

--HG--
extra : convert_revision : 40b285acb49a2b5ebc1c89ef00ef78fd740aaaf7
This commit is contained in:
Juan RP 2009-05-04 22:30:53 +02:00
parent a9b8499ac8
commit ab62d12294
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ post)
[ ! -x sbin/rc-update ] && exit 0
[ ! -x sbin/rc-service ] && exit 0
if sbin/rc-service -e udev; then
if sbin/rc-service -e ${PKGNAME}; then
echo "Registering ${PKGNAME} OpenRC service..."
sbin/rc-update add ${PKGNAME} default
[ $? -ne 0 ] && exit $?

View file

@ -8,7 +8,7 @@ pre)
[ ! -x sbin/rc-update ] && exit 0
[ ! -x sbin/rc-service ] && exit 0
if sbin/rc-service -e udev; then
if sbin/rc-service -e ${PKGNAME}; then
echo "Unregistering ${PKGNAME} OpenRC service..."
sbin/rc-update del ${PKGNAME} default
[ $? -ne 0 ] && exit $?