From: Joerg Jaspert Date: Sun, 21 Sep 2008 14:03:16 +0000 (+0200) Subject: md5sum check option X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=5ff550c90ed37320563c50651e0043907a4c2308;p=dak.git md5sum check option Signed-off-by: Joerg Jaspert --- diff --git a/tools/debianqueued-0.9/config b/tools/debianqueued-0.9/config index 9a368da2..6de4931a 100644 --- a/tools/debianqueued-0.9/config +++ b/tools/debianqueued-0.9/config @@ -52,6 +52,9 @@ $valid_files = '(\.changes|\.tar\.gz|\.dsc|\.u?deb|diff\.gz|\.sh)$'; # Change files to mode 644 locally (after md5 check) or only on master? $chmod_on_target = 0; +# Do an md5sum check after upload? +$check_md5sum = 1; + # name of the status file or named pipe in the incoming dir $statusfile = "$incoming/status"; diff --git a/tools/debianqueued-0.9/config-upload b/tools/debianqueued-0.9/config-upload index 8e1b87bf..311bc30b 100644 --- a/tools/debianqueued-0.9/config-upload +++ b/tools/debianqueued-0.9/config-upload @@ -52,6 +52,9 @@ $valid_files = '(\.changes|\.tar\.gz|\.dsc|\.u?deb|diff\.gz|\.sh)$'; # Change files to mode 644 locally (after md5 check) or only on master? $chmod_on_target = 0; +# Do an md5sum check? +$check_md5sum = 0; + # name of the status file or named pipe in the incoming dir $statusfile = "$incoming/status";