aboutsummaryrefslogtreecommitdiff
path: root/etc/debian/postinst.ex
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2023-03-10 09:15:17 +0100
committerPatrick Spek <p.spek@tyil.nl>2023-03-10 09:15:17 +0100
commite14c1e6d5ec7851557e078dfc25b22389d9980bc (patch)
treeda8cada5fc3cbd88aaa994a1454d777a587eae5f /etc/debian/postinst.ex
parentd3c2357a1bb3b53514cf56ab112db5b4c7da3137 (diff)
Clean up unused Debian files
Diffstat (limited to 'etc/debian/postinst.ex')
-rw-r--r--etc/debian/postinst.ex39
1 files changed, 0 insertions, 39 deletions
diff --git a/etc/debian/postinst.ex b/etc/debian/postinst.ex
deleted file mode 100644
index 650b2ee..0000000
--- a/etc/debian/postinst.ex
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-# postinst script for bashtard
-#
-# 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 https://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.
-
-#DEBHELPER#
-
-exit 0