debian/cubicweb-twisted.prerm
author egazoni
Fri, 07 May 2010 15:03:03 +0200
branchstable
changeset 5499 2a5cc708c2a0
parent 0 b97547f5f1fa
permissions -rw-r--r--
fixed bug of non-normalized path under Windows, that broke the reload mechanism

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