diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 19:26:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 19:26:41 +0000 |
commit | c00e0138654ac6227c58d75f0f004687cf96d4be (patch) | |
tree | 79a5742565d89a08b1af71e3652ad30ba0ae784a /debian/linux-headers-5.10.0-30progress6u1-686.postinst | |
parent | Setting abiname to 30progress6u1. (diff) | |
download | linux-c00e0138654ac6227c58d75f0f004687cf96d4be.tar.xz linux-c00e0138654ac6227c58d75f0f004687cf96d4be.zip |
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-5.10.0-30progress6u1-686.postinst')
-rwxr-xr-x | debian/linux-headers-5.10.0-30progress6u1-686.postinst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-5.10.0-30progress6u1-686.postinst b/debian/linux-headers-5.10.0-30progress6u1-686.postinst new file mode 100755 index 000000000..f700ded83 --- /dev/null +++ b/debian/linux-headers-5.10.0-30progress6u1-686.postinst @@ -0,0 +1,18 @@ +#!/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 = "5.10.0-30progress6u1-686"; + +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__ |