Cleanup
[speedometer] / debian / postrm
1 #! /bin/sh
2
3 case "$1" in 
4         remove)
5         # user really wants to remove this package so cleanup
6         # everything the app has created
7         gconftool --recursive-unset /apps/Maemo/speedometer
8         ;;
9
10         upgrade)
11         # normal upgrade of the package
12
13         ;;
14
15 esac
16
17 exit 0