debian/cubicweb-server.prerm
author Sylvain Thénault
Tue, 16 Sep 2014 16:39:23 +0200
changeset 9967 e65873ad0371
parent 0 b97547f5f1fa
permissions -rw-r--r--
[CWEP002] Add support for computed attribute synchronization Related to #3546717. Test and handle the behaviour with several formulas and identified use cases. To do so add a birth year and a computed attribute age to Person in the 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