debian/cubicweb-twisted.prerm
author David Douard <david.douard@logilab.fr>
Fri, 03 Jul 2015 12:18:56 +0200
changeset 10502 bdcd35e575fd
parent 0 b97547f5f1fa
permissions -rw-r--r--
[doc] reformat changes files headers to remove the "what's new" phrasing and add the publication date instead. Related to #4832808

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