debian/cubicweb-ctl.postrm
author David Douard <david.douard@logilab.fr>
Tue, 15 Nov 2016 10:13:47 +0100
branch3.24
changeset 11832 e8be49ecb522
parent 10559 5821ae654dfd
permissions -rw-r--r--
[debian] Update debian packaging (closes #16133259) - use dh_python, pybuild and debhelper>=9, - refactor and simplify the debian/rules, - rename binary packages (but cubicweb-ctl) to python-xxx - remove daemon handling stuff (initscripts...) from cubicweb-ctl (one should now use a standard WSGI delivery method),

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