debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 02 Jul 2015 10:15:47 +0200
changeset 10487 49a5c38de1de
parent 0 b97547f5f1fa
permissions -rw-r--r--
[server/test] stop using email cube - make unittest_migractions use a separate datadir, and add a fake email cube there (we use it to test {add,drop}_cube, so need something that looks like a cube) - for the other test modules, just copy what we need from cubicweb-email's schema to our test schema

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