summaryrefslogtreecommitdiff
path: root/templates/reprepro-export-key.sh.erb
blob: 304d511232afd64aced16082e10cad4c3dd3eeef (plain)
1
2
3
4
5
6
7
#!/bin/bash

KEY="`/usr/bin/gpg --homedir <%= basedir %> --with-colon --list-secret-keys | /usr/bin/cut -d : -f 5 | /usr/bin/head -1 &> <%= basedir %>/key.log`"

if [ ! -z "$KEY" ]; then
  /usr/bin/gpg --export --armor $KEY > <%= basedir %>/key.asc
fi