[Pgp-tools-commit] r34 - trunk/caff

Peter Palfrader weasel at costa.debian.org
Sat Feb 26 13:06:20 UTC 2005


Author: weasel
Date: 2005-02-26 14:06:19 +0100 (Sat, 26 Feb 2005)
New Revision: 34

Modified:
   trunk/caff/caff
Log:
gpg changes its interface every week or so - now --sign-key does no longer fall back to --edit

Modified: trunk/caff/caff
===================================================================
--- trunk/caff/caff	2005-01-09 01:45:50 UTC (rev 33)
+++ trunk/caff/caff	2005-02-26 13:06:19 UTC (rev 34)
@@ -554,14 +554,15 @@
 # sign keys
 ###########
 unless ($CONFIG{'no-sign'}) {
-	info("Sign the following keys according to your policy...");
+	info("Sign the following keys according to your policy..., then exit gpg with 'save'");
 	for my $keyid (@keyids_ok) {
 		my @command;
 		push @command, $CONFIG{'gpg-sign'};
 		push @command, '--local-user', $USER if (defined $USER);
 		push @command, "--homedir=$GNUPGHOME";
 		push @command, '--secret-keyring', $CONFIG{'secret-keyring'};
-		push @command, '--sign-key', $keyid;
+		push @command, '--edit', $keyid;
+		push @command, 'sign';
 		print join(' ', @command),"\n";
 		system (@command);
 	};





More information about the Pgp-tools-commit mailing list