debian/cubicweb-twisted.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Thu, 09 Jun 2011 12:20:57 +0200
branchstable
changeset 7477 3d64867f1019
parent 0 b97547f5f1fa
permissions -rw-r--r--
[bfss] Catch EnvironmentError instead of OSError when trying to read attributes bffstored This will also catch IOError (as file not found) that might be encountered expectable too.

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