debian/cubicweb-ctl.postrm
author Philippe Pepiot <philippe.pepiot@logilab.fr>
Tue, 21 May 2019 10:18:54 +0200
changeset 12620 824105876352
parent 11832 e8be49ecb522
permissions -rw-r--r--
[pkg] make cubicweb[crypto] depends on pycryptodome instead of pycrypto pycrypto isn't maintained anymore, the last release 2.6.1 is from 2014. Use the drop-in replacement fork pycryptodome instead. pycryptodome is packaged in debian starting from stretch-backports.

#!/bin/sh -e

if [ "$1" = "purge" ] ; then
        rm -rf /etc/cubicweb.d/
        rm -rf /var/log/cubicweb/
        rm -rf /var/lib/cubicweb/
fi

#DEBHELPER#
 
exit 0