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