debian/cubicweb-ctl.postrm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 09 Nov 2016 09:07:42 +0100
branch3.24
changeset 11809 11365e5c11d7
parent 10559 5821ae654dfd
child 11832 e8be49ecb522
permissions -rw-r--r--
[doc] Add my 3.24 release notes

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