Import version as of 2011-10-05 for upload-ftp-v1.1.pl
authorunknown <sysadmin@gnu.org>
Thu, 6 Oct 2011 00:44:46 +0000 (19:44 -0500)
committerJacob Bachmeyer <jcb@gnu.org>
Wed, 29 Jul 2020 03:06:54 +0000 (22:06 -0500)
upload-ftp-v1.1.pl

index 358d32a54ce61e2ceded0c00ca93003736a2b07f..bdca276112c462d7d21dd511bf4bdda6478a3537 100755 (executable)
@@ -931,6 +931,11 @@ sub check_files {
     # Verify that the file has been correctly signed with a valid signature.
     my @verify_args = ("/usr/bin/gpgv", "--keyring", $keyring,
            $sig_file, $upload_file);
+
+    my $verify_str = join(' ',@verify_args);
+    ($verify_str) = $verify_str =~ /^(.*)$/;
+    ftp_syslog('info',"$verify_str\n") if ($DEBUG > 0);
+
     if (!system (@verify_args)) {
       $valid = 1;
       last;