debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Sun, 01 Feb 2015 22:14:44 +0100
changeset 10294 277074659cad
parent 0 b97547f5f1fa
permissions -rw-r--r--
[dataimport] don't generate metadata which are explicitly specified Related to #4891552

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