summaryrefslogtreecommitdiffstats
path: root/debian/templates/postinst.initramfs-tools.in
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 08:03:40 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 08:03:40 +0000
commit6a254b9c2391d68199836601525220b5c5f8c0db (patch)
treed1e96c6ffb5ba431feee7e953a5ed15e56098248 /debian/templates/postinst.initramfs-tools.in
parentAdding upstream version 20200122. (diff)
downloadfirmware-free-6a254b9c2391d68199836601525220b5c5f8c0db.tar.xz
firmware-free-6a254b9c2391d68199836601525220b5c5f8c0db.zip
Adding debian version 20200122-4.debian/20200122-4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/templates/postinst.initramfs-tools.in')
-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#