summaryrefslogtreecommitdiffstats
path: root/sign_torrents
blob: 321dac2811118d8b51b9d4df596874ddc1b20dd2 (plain)
1
2
3
4
5
#!/bin/bash

for chksum in *.torrent; do
	gpg --homedir "/var/lib/releasekey/keys" --output "$chksum.gpg" --yes --detach-sig "$chksum"
done