#!/bin/sh
set -e

if [ -x "/etc/init.d/glite-lb-locallogger" ]; then
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d glite-lb-locallogger stop || exit $?
	else
		/etc/init.d/glite-lb-locallogger stop || exit $?
	fi
fi

#DEBHELPER#
