summaryrefslogtreecommitdiff
path: root/kernel-hook/pv-grub-menu
blob: 63bded4de1d8dab95e1506f0069b1e73d26e3067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh
set -e

which update-menu-lst >/dev/null 2>&1 || exit 0

set -- $DEB_MAINT_PARAMS
mode="${1#\'}"
mode="${mode%\'}"
case $0:$mode in
    # Only run on postinst configure and postrm remove, to avoid wasting
    # time by calling update-menu-lst multiple times on upgrade and removal.
    # Also run if we have no DEB_MAINT_PARAMS, in order to work with old
    # kernel packages.
    */postinst.d/*:|*/postinst.d/*:configure|*/postrm.d/*:|*/postrm.d/*:remove)
	exec update-menu-lst
	;;
esac

exit 0