debian/cubicweb-twisted.prerm
author Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>
Thu, 26 Sep 2013 10:46:37 +0200
branchstable
changeset 9318 5d5b3a865eb1
parent 0 b97547f5f1fa
permissions -rw-r--r--
[ctl] set proper encoding for sys.stdout/sys.stderr. Closes #1669144

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