debian/cubicweb-server.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Fri, 30 May 2014 16:36:56 +0200
changeset 9757 6eb7f361fba0
parent 0 b97547f5f1fa
permissions -rw-r--r--
[testlib] complete the RepoAccess object (closes #3843614) It was missing the open_session call.

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