debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 25 Mar 2015 07:57:38 +0100
changeset 10285 d14db30b90d6
parent 0 b97547f5f1fa
permissions -rw-r--r--
[repository] don't attempt to delete computed relation, they have no table in the database. Closes #5162935

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