debian/cubicweb-ctl.prerm
author Florent Cayré <florent.cayre@gmail.com>
Tue, 17 Jan 2012 14:26:18 +0100
branchstable
changeset 8169 f9fb7d903800
parent 6917 e080e7465ac4
permissions -rw-r--r--
[manage/index view] fix sources management view appearing in index view although it should not; closes #2126335

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