debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 16 Mar 2016 00:42:40 +0100
branch3.22
changeset 11439 8d22200d174b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] fix test_printable_value_bytes with current pygments An empty span was added in https://bitbucket.org/birkenfeld/pygments-main/commits/164574c13533195a555181a2b9c685fea2470403 (grafted from 74b04a88d28a)

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