File: sign-binaries

package info (click to toggle)
borgbackup2 2.0.0b20-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,848 kB
  • sloc: python: 33,830; pascal: 3,599; sh: 215; makefile: 160; tcl: 94; ansic: 21
file content (20 lines) | stat: -rwxr-xr-x 338 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

D=$1

if [ "$D" = "" ]; then
    echo "Usage: sign-binaries 201912312359"
    exit
fi

if [ "$QUBES_GPG_DOMAIN" = "" ]; then
    GPG=gpg
else
    GPG=qubes-gpg-client-wrapper
fi

for file in dist/borg-*; do
    $GPG --local-user "Thomas Waldmann" --armor --detach-sign --output "$file.asc" "$file"
done

touch -t "$D" dist/*