debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 02 Oct 2015 10:04:35 +0200 (2015-10-02)
changeset 10760 c34bbdb18745
parent 0 b97547f5f1fa
permissions -rw-r--r--
[server] unicode → six.text_type
#! /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