debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 05 Feb 2016 10:30:01 +0100
changeset 11093 f28a5c19d4ed
parent 0 b97547f5f1fa
permissions -rw-r--r--
[devtools] fix config.repository signature Its argument is called 'vreg', not 'x'. Closes #10515113.

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