initial commit
imported from https://salsa.debian.org/kernel-team/linux.git commit 9d5cc9d9d6501d7f1dd7e194d4b245bd0b6c6a22 version 6.11.4-1
This commit is contained in:
18
debian/templates/headers.postinst.in
vendored
Normal file
18
debian/templates/headers.postinst.in
vendored
Normal file
@@ -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 = "@abiname@@localversion@";
|
||||
|
||||
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__
|
Reference in New Issue
Block a user