debian/cubicweb-server.prerm
author Arthur Lutz <arthur.lutz@logilab.fr>
Mon, 17 Sep 2012 14:39:29 +0200
branchstable
changeset 8745 00c5ea2a064a
parent 0 b97547f5f1fa
permissions -rw-r--r--
[web] don't link to None in author box (when author has been deleted) (closes #2409855)

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