You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
459 B
26 lines
459 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
if ! [[ $KERNEL_INSTALL_MACHINE_ID ]]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
ARCH=$(uname -m)
|
||
|
|
||
|
[[ -f /etc/default/grub ]] && . /etc/default/grub
|
||
|
|
||
|
# Can't assume a BLS capable bootloader on ppc64
|
||
|
if [[ x$GRUB_ENABLE_BLSCFG != xfalse &&
|
||
|
$ARCH != "ppc64" && $ARCH != "ppc64le" ]]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
COMMAND="$1"
|
||
|
|
||
|
case "$COMMAND" in
|
||
|
add|remove)
|
||
|
grub2-mkconfig --no-grubenv-update -o /boot/grub2/grub.cfg >& /dev/null
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|