blob: eef722b2e93af6ec2bbd16b7ff4b713afe3da3fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
#
# Embed the signatures for the shim binary in preinst, so we have them
# before any files are installed.
KNOWN_SIGS=""
for entry in $(cat build/*-signatures); do
KNOWN_SIGS="$KNOWN_SIGS $entry"
done
sed "s,@@SHIM_SIGNATURES@@,${KNOWN_SIGS}," debian/shim-signed.preinst.in > debian/shim-signed.preinst
|