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

index 8732487e1e276416bc6a49865fe1f45bcda4340d..c99f06b4b08e82bc302a90bde76de1c5c1a86207 100644 (file)
@@ -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