Files
ATEST/linux-headers/DEBIAN/postinst
T
Cantibra c4938f77f8
Raspberry Pi Linux Kernel 6.12.y / sources (push) Successful in 2m54s
Raspberry Pi Linux Kernel 6.12.y / build (push) Failing after 15m28s
40
2026-05-06 14:14:52 +02:00

15 lines
324 B
Perl

#!/usr/bin/perl
$|=1;
my $version = "CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION";
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__