Files
Leann Ogasawara e68fec95c4 UBUNTU: [debian] Initial debian and ubuntu directories
Based off Ubuntu-unstable-6.0.0-9.9.

Ignore: yes
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
2024-03-11 09:39:14 +01:00

16 lines
264 B
Bash
Executable File

#!/bin/sh
set -e
version=@abiname@@localversion@
if [ "$1" != configure ]; then
exit 0
fi
if [ -d /etc/kernel/header_postinst.d ]; then
DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \
/etc/kernel/header_postinst.d
fi
exit 0