debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Sat, 06 Feb 2010 10:34:26 +0100
branchstable
changeset 4485 5f99eb0b99f7
parent 0 b97547f5f1fa
permissions -rw-r--r--
initialize property once initialization has been fully completed, close #666573

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