summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-6.7.9-progress7.99-686-pae.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:45:51 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:46:21 +0000
commite92289a74ff5bfa20aa24af8fa0e2ce82e8f7aed (patch)
tree5cd7e7e7f8a89cd3b82cdb2a65f8fc75f48cd052 /debian/linux-headers-6.7.9-progress7.99-686-pae.postinst
parentReleasing progress-linux version 6.7.9-1~progress7.99u1. (diff)
downloadlinux-e92289a74ff5bfa20aa24af8fa0e2ce82e8f7aed.tar.xz
linux-e92289a74ff5bfa20aa24af8fa0e2ce82e8f7aed.zip
Merging debian version 6.7.9-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-6.7.9-progress7.99-686-pae.postinst')
-rw-r--r--debian/linux-headers-6.7.9-progress7.99-686-pae.postinst18
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/linux-headers-6.7.9-progress7.99-686-pae.postinst b/debian/linux-headers-6.7.9-progress7.99-686-pae.postinst
deleted file mode 100644
index d50a2447c0..0000000000
--- a/debian/linux-headers-6.7.9-progress7.99-686-pae.postinst
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl
-# Author: Michael Gilbert <michael.s.gilbert@gmail.com>
-# Origin: Stripped down version of the linux-headers postinst from Ubuntu's
-# 2.6.32-14-generic kernel, which was itself derived from a
-# Debian linux-image postinst script.
-
-$|=1;
-my $version = "6.7.9-progress7.99-686-pae";
-
-if (-d "/etc/kernel/header_postinst.d") {
- system ("run-parts --report --exit-on-error --arg=$version " .
- "/etc/kernel/header_postinst.d") &&
- die "Failed to process /etc/kernel/header_postinst.d";
-}
-
-exit 0;
-
-__END__