1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-04 11:29:14 +00:00

add debianization scripts based on work by Florent USSEIL

This commit is contained in:
Andrew Dolgov
2011-11-11 00:02:53 +04:00
parent 17140b71ed
commit d0cafcf4a0
31 changed files with 683 additions and 0 deletions

17
debian/tt-rss-common.postrm vendored Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/sh
set -e
# source debconf stuff
if [ -f /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
fi
if [ "$1" = "purge" ]; then
rm -rf /usr/share/tt-rss/www/icons
rm -rf /var/lock/tt-rss
rm -rf /var/cache/tt-rss
fi
exit 0
#DEBHELPER#