debian/cubicweb-server.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Sun, 01 May 2016 22:00:14 +0200
changeset 11238 bb5fdf1eb8fb
parent 0 b97547f5f1fa
permissions -rw-r--r--
[doc] fix abstract of data import

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