debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 30 Sep 2015 18:04:27 +0200
changeset 10740 59e89db3a67d
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