debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Sat, 31 Jan 2015 19:32:32 +0100
changeset 10173 c06ef8a2e4df
parent 0 b97547f5f1fa
permissions -rw-r--r--
[pkg] fix setup.py install One day I'll get this thing right. Maybe.

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