2 # postinst script for helloworld
4 # see: dh_installdeb(1)
9 # summary of how this script can be called:
10 # * <postinst> `configure' <most-recently-configured-version>
11 # * <old-postinst> `abort-upgrade' <new version>
12 # * <conflictor's-postinst> `abort-remove' `in-favour' <package>
14 # * <postinst> `abort-remove'
15 # * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
16 # <failed-install-package> <version> `removing'
17 # <conflicting-package> <version>
18 # for details, see http://www.debian.org/doc/debian-policy/ or
19 # the debian-policy package
25 if test -d ~/$DIR_NAME; then
26 echo "postinst: removing ~/$DIR_NAME"
29 if test -d ~user/$DIR_NAME; then
30 echo "postinst: removing ~user/$DIR_NAME"
31 rm -rf ~user/$DIR_NAME
35 abort-upgrade|abort-remove|abort-deconfigure)
39 echo "postinst called with unknown argument \`$1'" >&2
44 # dh_installdeb will replace this with shell code automatically
45 # generated by other debhelper scripts.