This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
glasnost/debian/glasnost.postrm

13 lines
202 B
Bash

#! /bin/sh
find /var/lib/glasnost/webcache/ -type f -print0 | xargs -0 rm
if [ "$1" = "purge" ]; then
rmdir /etc/glasnost || true
rm -rf /var/log/glasnost
rm -rf /var/lib/glasnost
fi
#DEBHELPER#