summaryrefslogtreecommitdiffstats
path: root/debian/templates/postinst.initramfs-tools.in
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:26:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:26:19 +0000
commit3fb3e62dbd16f2599087719648dca10596b2bb3f (patch)
tree129fe1962b84672a0d6df4c5edf28e0547071409 /debian/templates/postinst.initramfs-tools.in
parentAdding upstream version 20230210. (diff)
downloadfirmware-nonfree-3fb3e62dbd16f2599087719648dca10596b2bb3f.tar.xz
firmware-nonfree-3fb3e62dbd16f2599087719648dca10596b2bb3f.zip
Adding debian version 20230210-5.debian/20230210-5debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--debian/templates/postinst.initramfs-tools.in19
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/templates/postinst.initramfs-tools.in b/debian/templates/postinst.initramfs-tools.in
new file mode 100644
index 0000000..6c9e968
--- /dev/null
+++ b/debian/templates/postinst.initramfs-tools.in
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ configure)
+ dpkg-trigger --no-await update-initramfs
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" 1>&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#