debian/cubicweb-twisted.prerm
author Arthur Lutz <arthur.lutz@logilab.fr>
Tue, 21 Jan 2014 18:39:32 +0100
changeset 9476 33a7db07201e
parent 0 b97547f5f1fa
permissions -rw-r--r--
[doc] Update copyright date to 2014 (closes #3463136)

#! /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