debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 30 Jun 2009 08:05:18 +0200
branchstable
changeset 2201 ddc1f58c8e8b
parent 0 b97547f5f1fa
permissions -rw-r--r--
deprecate display_name from builtin, ask for explicit import

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