debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 26 Feb 2010 06:55:43 +0100
branchstable
changeset 4701 3acd198a66c9
parent 0 b97547f5f1fa
permissions -rw-r--r--
[facet] before 3.6 we were sure to have a cw_rset attribute. Restore this for facets

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