debian/cubicweb-ctl.postrm
author Aurelien Campeas <aurelien.campeas@pythonian.fr>
Fri, 26 Jun 2015 10:26:00 +0200
changeset 11428 7995ae2d74be
parent 10559 5821ae654dfd
child 11832 e8be49ecb522
permissions -rw-r--r--
[hooks/test/synschema] remove an unneeded skipTest. Related to #5557633.

#!/bin/sh -e

if [ "$1" = "remove" ]; then
        update-rc.d cubicweb remove >/dev/null
fi
 
if [ "$1" = "purge" ] ; then
        rm -rf /etc/cubicweb.d/
        rm -rf /var/log/cubicweb/
        rm -rf /var/lib/cubicweb/
fi

#DEBHELPER#
 
exit 0