(no commit message)
[drlaunch] / debian / drlaunch.postinst
diff --git a/debian/drlaunch.postinst b/debian/drlaunch.postinst
deleted file mode 100644 (file)
index 7dc71f0..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-# postinst script for wifieye
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postinst> `configure' <most-recently-configured-version>
-#        * <old-postinst> `abort-upgrade' <new version>
-#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-#          <new-version>
-#        * <postinst> `abort-remove'
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-case "$1" in
-    configure)
-       LNK="/usr/lib/hildon-desktop/drlaunch.py"
-
-       if ! test -e "$LNK" ; then
-               ln -s  "/usr/shared/pyshared/drlaunch/drlaunch.py" "$LNK"
-       fi
-#      echo "Reloading actman applet"
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-    ;;
-
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-exit 0
-