debian/cubicweb-server.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Mon, 01 Sep 2014 10:22:46 +0200
changeset 9993 1ced03652d5e
parent 0 b97547f5f1fa
permissions -rw-r--r--
[devtools] "Keep" some temporary files/dirs around to help with debugging The whole QUnitTestCase runs with an @with_tempdir so it's redundant anyway.

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