debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 12 Oct 2015 21:48:50 +0200
changeset 10786 2ef74a6e6785
parent 0 b97547f5f1fa
permissions -rw-r--r--
[web] 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