2022-04-04 18:11:57 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# postinst script for grub-acrn
|
|
|
|
#
|
|
|
|
# see: dh_installdeb(1)
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
case "$1" in
|
2022-05-04 19:06:11 +08:00
|
|
|
configure|triggered)
|
2022-04-04 18:11:57 +08:00
|
|
|
if command -v update-grub > /dev/null && [ -d /boot/grub ]; then
|
|
|
|
update-grub || :
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
|
|
# generated by other debhelper scripts.
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
|
|
|
|
exit 0
|