summarylogtreecommitdiffstats
path: root/shim-signed.install
blob: ed3951a8aef4dd571b8270e7af0aefbf9e26d14d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
	cat <<EOF
  WARNING: Since version 15.3, shim requires SBAT.
  It WILL NOT launch EFI binaries without a .sbat section.
  See the upstream documentation: https://github.com/rhboot/shim/blob/main/SBAT.md
EOF
}

post_upgrade() {
	if (( $(vercmp $1 15.4+fedora+5) <= 0)); then
		post_install
	fi
}