File: sign-missing-image.sh

package info (click to toggle)
sbsigntool 0.9.4-3.2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: ansic: 8,390; sh: 194; makefile: 159
file content (10 lines) | stat: -rwxr-xr-x 147 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash -e

signed="test.signed"

set +e
"$sbsign" --cert "$cert" --key "$key" --output "$signed" "missing-image"
rc=$?
set -e

test $rc -eq 1