debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 13 Jun 2014 11:00:41 +0200
branchstable
changeset 9923 da09975300aa
parent 0 b97547f5f1fa
permissions -rw-r--r--
[cwctl] don't prompt for cube options in automatic mode Closes #3984223

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