]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - debian/templates/headers.postinst.in
rtc: xgene: fix possible race condition
[mirror_ubuntu-bionic-kernel.git] / debian / templates / headers.postinst.in
1 #!/bin/sh
2 set -e
3
4 version=@abiname@@localversion@
5
6 if [ "$1" != configure ]; then
7 exit 0
8 fi
9
10 if [ -d /etc/kernel/header_postinst.d ]; then
11 DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \
12 /etc/kernel/header_postinst.d
13 fi
14
15 exit 0