debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 30 Sep 2016 17:38:12 +0200
changeset 11773 054a947b5415
parent 0 b97547f5f1fa
permissions -rw-r--r--
[repository] Drop the entities.asource column It not used anymore thanks to previous patches. Closes #15538288

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