summaryrefslogtreecommitdiff
path: root/debian/postinst
diff options
context:
space:
mode:
authorBennett Goble <signal@lindenlab.com>2021-08-02 08:46:03 -0700
committerBennett Goble <signal@lindenlab.com>2021-08-02 10:13:20 -0700
commitf27a371b05e97b089c123d4385bf89b41a544e0a (patch)
treeb8cf007b43378b396fc1c26b3c5482632617940b /debian/postinst
parentb106d949561ed039aa516f9719c1094abbbe374c (diff)
SL-15743: Remove debian packaging
Diffstat (limited to 'debian/postinst')
-rw-r--r--debian/postinst43
1 files changed, 0 insertions, 43 deletions
diff --git a/debian/postinst b/debian/postinst
deleted file mode 100644
index 2c4f8ea858..0000000000
--- a/debian/postinst
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-# postinst script for secondlife-viewer
-#
-# Delete this file if you don't need it.
-#
-# 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)
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts. Don't delete this!
-
-#DEBHELPER#
-
-exit 0
-
-