debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 08 Oct 2013 16:10:42 +0200
branchstable
changeset 9262 7fc54e02291f
parent 0 b97547f5f1fa
permissions -rw-r--r--
[security] fix dumb attribute error when inserting read security. Closes #3196891 This has gone undetected because of erroneous tests...

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