debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 30 Jul 2013 17:09:02 +0200
branchstable
changeset 9203 c7ba8e5d2e45
parent 0 b97547f5f1fa
permissions -rw-r--r--
[i18n] cleanup dead code also fix small bug introduced in b0f6e8c14e7f

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