debian/cubicweb-ctl.prerm
author Sylvain Thénault
Tue, 16 Sep 2014 16:39:23 +0200
changeset 9967 e65873ad0371
parent 6917 e080e7465ac4
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
    purge)
	rm -rf /etc/cubicweb.d/
	rm -rf /var/log/cubicweb/
	rm -rf /var/lib/cubicweb/
    ;;
esac
 
#DEBHELPER#
 
exit 0