#!/bin/sh
# Copyright © 2003, 2004  Recai Oktaş <roktas@omu.edu.tr>
#
# Licensed under the GNU General Public License, version 2.
# See the file `http://www.gnu.org/copyleft/gpl.txt'.

set -e

#DEBHELPER#

# Stop daemon.
if [ -x /usr/sbin/invoke-rc.d ]; then
	invoke-rc.d elog stop
else
	if [ -x /etc/init.d/elog ]; then
		/etc/init.d/elog stop
	fi
fi || true

exit 0

# vim:ai:sts=8:sw=8:
