debian/cubicweb-twisted.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Thu, 19 Dec 2019 12:15:29 +0100
branch3.23
changeset 12839 1dfe1cd9946a
parent 0 b97547f5f1fa
permissions -rw-r--r--
closing branch 3.23

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