debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 30 Sep 2011 11:16:29 +0200
branchstable
changeset 7898 405017c79b45
parent 0 b97547f5f1fa
permissions -rw-r--r--
[ms, test] fix source deletion pb, detected by test since 7885:9454b7ef5ae4

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