debian/cubicweb-server.prerm
author Katia Saurfelt <katia.saurfelt@logilab.fr>
Thu, 29 Mar 2012 14:24:49 +0200
branchstable
changeset 8335 eef305ace54c
parent 0 b97547f5f1fa
permissions -rw-r--r--
[js] get rid of `partial` function (closes #1972794)

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