Workaround a bug of php 5.2.0+etch10 which has a fallback to text/plain
[banana.git] / debian / php-banana.postrm
1 #!/bin/sh -e
2
3 ACTION=$1
4 case "$ACTION" in
5     purge)
6         rm -rf /var/spool/banana
7         ;;
8
9     *)
10         ;;
11 esac
12
13
14 #DEBHELPER#
15
16 exit 0