debian/cubicweb-ctl.postrm
author Florent Cayré <florent.cayre@gmail.com>
Sun, 06 Nov 2016 16:43:27 +0100
branch3.24
changeset 11806 5fdc92be3ba7
parent 10559 5821ae654dfd
child 11832 e8be49ecb522
permissions -rw-r--r--
[doc] Add some words in changelog about pyramid support in core + fix its title Closes #16121152.

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