1
0
linux/debian/templates/headers.postinst.in
Konstantin Demin eb2bdc81cb rewrite scripts
try to provide better syntax and avoid using bash
2024-10-29 05:12:06 +03:00

18 lines
531 B
Perl

#!/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__