summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-6.1.0-20-686-pae.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-07 02:25:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-07 02:25:27 +0000
commitd5a6edd80a01e1c5980dc393976edbaac3c0a06c (patch)
tree75bd6b11c0900b65737841f5760b0a874a71bc7d /debian/linux-headers-6.1.0-20-686-pae.postinst
parentMerging upstream version 6.1.90. (diff)
downloadlinux-debian.tar.xz
linux-debian.zip
Adding debian version 6.1.90-1.debian/6.1.90-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-6.1.0-20-686-pae.postinst')
-rwxr-xr-xdebian/linux-headers-6.1.0-20-686-pae.postinst18
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/linux-headers-6.1.0-20-686-pae.postinst b/debian/linux-headers-6.1.0-20-686-pae.postinst
deleted file mode 100755
index 555689a41..000000000
--- a/debian/linux-headers-6.1.0-20-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.1.0-20-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__