debian/cubicweb-twisted.prerm
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Mon, 14 Dec 2009 14:57:10 +0100
branchstable
changeset 4113 986fc01be83c
parent 0 b97547f5f1fa
permissions -rw-r--r--
TIMESTAMP column type has a special meaning for SQLServer, avoid using it for that driver (with help from logilab.common.adbh)

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