debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 15 Mar 2016 14:30:21 +0100
changeset 11188 744e57d74f6d
parent 0 b97547f5f1fa
permissions -rw-r--r--
[web/calendar] fix regression in previous changeset "Enables css customization in CalendarView" was untested, and introduced a crash: TypeError: not all arguments converted during string formatting

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