Fremantle updates: easy-chroot 0.2.7, easy-deb-chroot 0.9.42
[easy-deb-chroot] / fremantle / easy-deb-chroot / control / postrm
1 #!/bin/sh
2
3 UPGRADE=$1
4 if [ "$UPGRADE" = "remove" ] ; then
5
6 export MSG1=`printf "\
7 Removing this package does NOT delete the large image file\n\
8 named debian-stable.img.ext2 from your SD card. You can do this\n\
9 with the File Manager, although you may need to reboot\n\
10 before you are allowed to delete the file."`
11 echo $MSG1 > /tmp/msg.txt
12 maemo-confirm-text "Notice" /tmp/msg.txt
13
14 fi
15
16 exit 0