From: Ralph Ronnquist Date: Mon, 4 Sep 2023 03:57:27 +0000 (+1000) Subject: changed postrm to be prerm and andded #DEBHELPER# X-Git-Tag: 1.0-1 X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=refs%2Ftags%2F1.0-1;hp=1e579020f958ba486fdd9e3cab8526bb20225de5;p=rrq%2Foverlay-boot.git changed postrm to be prerm and andded #DEBHELPER# --- diff --git a/debian/overlay-boot.prerm b/debian/overlay-boot.prerm new file mode 100755 index 0000000..f98ae0c --- /dev/null +++ b/debian/overlay-boot.prerm @@ -0,0 +1,13 @@ +#!/bin/sh +set -e + +case "$1" in + remove) + update-rc.d subhosts disable || true + ;; + *) + : + ;; +esac + +#DEBHELPER# diff --git a/debian/postrm b/debian/postrm deleted file mode 100755 index 9760d62..0000000 --- a/debian/postrm +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -set -e - -case "$1" in - remove) - update-rc.d subhosts disable || true - ;; - *) - : - ;; -esac