Index: trunk/DataStore/scripts/dsgetfileset
===================================================================
--- trunk/DataStore/scripts/dsgetfileset	(revision 27228)
+++ trunk/DataStore/scripts/dsgetfileset	(revision 27229)
@@ -17,5 +17,5 @@
 use File::Basename qw( basename );
 
-my ($uri, $outdir, $timeout, $no_proxy, $verbose);
+my ($uri, $outdir, $timeout, $skip_checks, $no_proxy, $verbose);
 
 GetOptions(
@@ -23,4 +23,5 @@
     'outdir|o=s'        => \$outdir,
     'timeout|t=s'       => \$timeout,
+    'skip-checks'       => \$skip_checks,
     'no-proxy'          => \$no_proxy,
     'verbose|v'         => \$verbose,
@@ -79,5 +80,6 @@
     my $bytes = $fs->bytes;
 
-    my $command = "dsget --uri $uri --filename $outfile --md5 $md5 --bytes $bytes --timeout $timeout";
+    my $command = "dsget --uri $uri --filename $outfile --timeout $timeout";
+    $command .= " --md5 $md5 --bytes $bytes" if !$skip_checks;
     print "$command\n" if $verbose;
     my $rc = system $command;
