debian/cubicweb-ctl.postrm
author Julien Cristau <julien.cristau@logilab.fr>
Wed, 16 Mar 2016 00:42:40 +0100
branch3.22
changeset 11439 8d22200d174b
parent 10559 5821ae654dfd
child 11832 e8be49ecb522
permissions -rw-r--r--
[test] fix test_printable_value_bytes with current pygments An empty span was added in https://bitbucket.org/birkenfeld/pygments-main/commits/164574c13533195a555181a2b9c685fea2470403 (grafted from 74b04a88d28a)

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