1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/secureboot-hook/secureboot-hook.post-install
2021-07-25 00:28:30 +02:00

16 lines
366 B
Bash

#!/bin/sh
ln -s /usr/share/kernel-hooks.d/secureboot.hook /etc/kernel-hooks.d/10-secureboot.hook
case "$(. /etc/mkinitfs/mkinitfs.conf >/dev/null; printf %s "$disable_trigger")" in
yes | true | 1) exit 0;;
esac
cat >&2 <<EOF
*
* After configuring Secure Boot, disable mkinitfs trigger:
* echo 'disable_trigger=yes' >> /etc/mkinitfs/mkinitfs.conf
*
EOF
exit 0