aboutsummaryrefslogtreecommitdiff
path: root/etc/debian/preinst.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/preinst.ex
parentd3c2357a1bb3b53514cf56ab112db5b4c7da3137 (diff)
Clean up unused Debian files
Diffstat (limited to 'etc/debian/preinst.ex')
-rw-r--r--etc/debian/preinst.ex35
1 files changed, 0 insertions, 35 deletions
diff --git a/etc/debian/preinst.ex b/etc/debian/preinst.ex
deleted file mode 100644
index cfb9d1f..0000000
--- a/etc/debian/preinst.ex
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# preinst script for bashtard
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <new-preinst> `install'
-# * <new-preinst> `install' <old-version>
-# * <new-preinst> `upgrade' <old-version>
-# * <old-preinst> `abort-upgrade' <new-version>
-# for details, see https://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- install|upgrade)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst 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