diff options
author | Signal Linden <signal@lindenlab.com> | 2021-08-02 20:02:09 +0000 |
---|---|---|
committer | Signal Linden <signal@lindenlab.com> | 2021-08-02 20:02:09 +0000 |
commit | b63cdeb1d310c24293b4fafd4049d98c43cf0714 (patch) | |
tree | b8cf007b43378b396fc1c26b3c5482632617940b /debian/postinst | |
parent | 497d4a53748e029ea955db939d8c973a9ee9f61f (diff) | |
parent | f27a371b05e97b089c123d4385bf89b41a544e0a (diff) |
Merged in signal/sweep (pull request #642)
SL-15743: Remove unused files, .hgtags & Debian packaging
Approved-by: Andrey Lihatskiy
Diffstat (limited to 'debian/postinst')
-rw-r--r-- | debian/postinst | 43 |
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 - - |