lbs-filter-gpg should run gpg in batch mode.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 16 Aug 2007 22:12:40 +0000 (15:12 -0700)
committerMichael Vrable <mvrable@turin.ucsd.edu>
Thu, 16 Aug 2007 22:12:40 +0000 (15:12 -0700)
Supply the --batch option to gpg so that it can run without a terminal.

lbs-filter-gpg

index 547f1d8..010c05f 100755 (executable)
@@ -14,7 +14,7 @@
 #   LBS_GPG_PASSPHRASE  passphrase to supply to gpg, if needed
 
 declare -a gpg_options
-gpg_options=(--quiet)
+gpg_options=(--quiet --batch)
 
 if [ -n "$LBS_GPG_HOME" ]; then
     gpg_options=("${gpg_options[@]}" --homedir "$LBS_GPG_HOME")