diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-05-09 11:32:55 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-05-09 11:32:55 -0300 |
commit | 8153ef32f97d90d4a3495226d21385a7b814e71b (patch) | |
tree | a89cad6460c937071ef3cf6f3c64f745ac0db502 | |
parent | ec1303d1569ded6888a04830be97b9d2bbd65a9b (diff) | |
download | puppet-reprepro-8153ef32f97d90d4a3495226d21385a7b814e71b.tar.gz puppet-reprepro-8153ef32f97d90d4a3495226d21385a7b814e71b.tar.bz2 |
Trying to sort out why reprepro-export-key is not working (8)
-rw-r--r-- | templates/reprepro-export-key.sh.erb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/reprepro-export-key.sh.erb b/templates/reprepro-export-key.sh.erb index c048dc1..f3bd846 100644 --- a/templates/reprepro-export-key.sh.erb +++ b/templates/reprepro-export-key.sh.erb @@ -1,7 +1,9 @@ #!/bin/bash -KEY="`/usr/bin/gpg --homedir <%= basedir %>/.gnupg --with-colon --list-secret-keys | /usr/bin/cut -d : -f 5 | /usr/bin/head -1`" +/usr/bin/gpg --homedir <%= basedir %>/.gnupg --with-colon --list-secret-keys | /usr/bin/cut -d : -f 5 | /usr/bin/head -n 1 &> <%= basedir %>/key.log + +KEY="`/usr/bin/gpg --homedir <%= basedir %>/.gnupg --with-colon --list-secret-keys | /usr/bin/cut -d : -f 5 | /usr/bin/head -n 1`" if [ ! -z "$KEY" ]; then - /usr/bin/gpg --export --armor $KEY > <%= basedir %>/key.asc + /usr/bin/gpg --export --armor $KEY &> <%= basedir %>/key.asc fi |