a2224a3ff403b1fb2da3f74dbbf4cb9e39471781
hiram
  Tue Oct 21 10:43:09 2025 -0700
this should only push out to hgwbeta and hgw0, does not need to push to the RR, that is cluster admin territory refs #35575

diff --git src/hg/utils/otto/genArk/quickPush.pl src/hg/utils/otto/genArk/quickPush.pl
index 17eaeb47af1..61bd7d01fa7 100755
--- src/hg/utils/otto/genArk/quickPush.pl
+++ src/hg/utils/otto/genArk/quickPush.pl
@@ -5,31 +5,31 @@
 ###    and hgwbeta.todayList.gz are made by cron jobs previous to this
 ###    script running.  They are a listing of files in /gbdb/genark/GC[AF]/
 ###    with the 'mtime' - last modified time.  This time will be compared
 ###    to decide if anything needs to go out.
 ###
 ###  This source is from the source tree:
 ###     ~/kent/src/hg/utils/otto/genArk/quickPush.pl
 ###  do *not* edit this in the otto directory /hive/data/inside/GenArk/pushRR/
 ###  where this is used.
 #############################################################################
 
 use strict;
 use warnings;
 use File::Basename;
 
-my @machList = qw( hgw0 hgw1 hgw2 Genome-Browser-Mirror-3.dhcp.uni-bielefeld.de );
+my @machList = qw( hgw0 );
 
 my $lf;		# going to become the output handle for the logfile
 my $expectName = "hgwdev";
 my $hostName = `hostname -s`;
 chomp $hostName;
 
 if ($hostName ne $expectName) {
   printf STDERR "ERROR: must run this on %s !  This is: %s\n", ${expectName}, ${hostName};
   exit 255;
 }
 
 ##############################################################################
 ### pass in a machine name and a contrib/directory to rsync out
 sub rsyncContrib($$) {
   my ($dest, $contribDir) = @_;