diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-05-09 10:56:36 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-05-09 10:56:36 -0300 |
commit | 4742106f4a05ee0b0f9f9f827a397b79716a4e4e (patch) | |
tree | 9f24dcfcd7b73016afab194355decff93f7ea23f /templates/reprepro-export-key.sh.erb | |
parent | 3d528b9ab06145f774d021adbffb6cbc55bd26ae (diff) |
Trying to sort out why reprepro-export-key is not working
Diffstat (limited to 'templates/reprepro-export-key.sh.erb')
-rw-r--r-- | templates/reprepro-export-key.sh.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/reprepro-export-key.sh.erb b/templates/reprepro-export-key.sh.erb index 52e277c..304d511 100644 --- a/templates/reprepro-export-key.sh.erb +++ b/templates/reprepro-export-key.sh.erb @@ -1,6 +1,6 @@ #!/bin/bash -KEY="`/usr/bin/gpg --with-colon --list-secret-keys | /usr/bin/cut -d : -f 5 | /usr/bin/head -1`" +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 |