From: Silvio Rhatto Date: Sun, 9 May 2010 03:47:38 +0000 (-0300) Subject: Checking if there's a key to export X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5d92c6169661a5833bdc73df738e1a6a36840f23;p=puppet-reprepro.git Checking if there's a key to export --- diff --git a/templates/reprepro-export-key.sh.erb b/templates/reprepro-export-key.sh.erb index e547408..ecd2cf2 100644 --- a/templates/reprepro-export-key.sh.erb +++ b/templates/reprepro-export-key.sh.erb @@ -1,4 +1,7 @@ #!/bin/bash KEY="`/usr/bin/gpg --with-colon --list-secret-keys | cut -d : -f 5 | head -1`" -/usr/bin/gpg --export -a $KEY > <%= basedir %>/key.asc + +if [ ! -z "$KEY" ]; then + /usr/bin/gpg --export --armor $KEY > <%= basedir %>/key.asc +fi