debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 20 May 2016 12:05:29 +0200
changeset 11259 84e2a1121f4b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[devtools] pep8 a bit package's __init__

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