update options menu to for RSS feed options
[diogenes.git] / debian / diogenes.prerm
CommitLineData
6855525e
JL
1#!/bin/sh -e
2
3ACTION=$1
4case "$ACTION" in
5remove)
6 #
7 # Remove the automatically generated diogenes.config.inc.php
8 #
9 rm -f /etc/diogenes/diogenes.config.inc.php
10
11 #
12 # Remove the compiled templates directory
13 #
14 rm -rf /var/spool/diogenes/templates_c
15 ;;
16*)
17 ;;
18esac
19
20# dh_installdeb will replace this with shell code automatically
21# generated by other debhelper scripts.
22
23#DEBHELPER#
24
25exit 0
26