debian/cubicweb-server.prerm
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Tue, 26 Jul 2011 13:11:37 +0200
branchstable
changeset 7692 b37f4fdc44d4
parent 0 b97547f5f1fa
permissions -rw-r--r--
[facets] make sure has_text facet data is posted correctly (closes #1857405) Posted data was associated to facet id (e.g. has-text-123098dasdf898adssdd) rather than facet name (i.e. has-text).

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