debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 13 Oct 2015 11:34:37 +0200
changeset 10789 d5671a61f281
parent 0 b97547f5f1fa
permissions -rw-r--r--
[server/schemaserial] fix extra_props on py3k json.dumps returns unicode, and json.load eats unicode, so add explicit encoding/decoding.

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