]> gitweb.fluxo.info Git - puppet-reprepro.git/commitdiff
Trying to sort out why reprepro-export-key is not working (8)
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 9 May 2010 14:32:55 +0000 (11:32 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 9 May 2010 14:32:55 +0000 (11:32 -0300)
templates/reprepro-export-key.sh.erb

index c048dc18c54bd147ba58356ed419ab5fd61f9ad1..f3bd846e52ad9ea0a13b9770d033bf0ac0785eec 100644 (file)
@@ -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