debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 19 Dec 2014 12:35:43 +0100
changeset 10126 459c5585d2f1
parent 0 b97547f5f1fa
permissions -rw-r--r--
[debian] update cubicweb-dev's lintian override Switching from python-support to dh-python changed the installation path.

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