debian/cubicweb-server.prerm
author Denis Laxalde <denis.laxalde@logilab.fr>
Tue, 01 Dec 2015 14:44:55 +0100
changeset 11083 4b18b1027d02
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] Gather tests about mail module From sobjects/test/unittest_notification.py to test/unittest_mail.py where other tests for mail.py are already. Some style fixes along the way.

#! /bin/sh -e
 
case "$1" in
    remove)
	if [ -x "/etc/init.d/cubicweb-ctl" ]; then
	    invoke-rc.d cubicweb-ctl stop || true
	fi
    ;;
esac
 
#DEBHELPER#
 
exit 0