debian/cubicweb-server.prerm
author Katia Saurfelt <katia.saurfelt@logilab.fr>
Thu, 16 Apr 2009 17:37:59 +0200
changeset 1383 a793dc5bfd67
parent 0 b97547f5f1fa
permissions -rw-r--r--
add a function to retrieve a list of mainactions

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