8f6315dbca0175c9de974e7d4a9baa8fb040583e
hiram
  Tue Oct 21 10:38:44 2025 -0700
this should only push out to hgwbeta, does not need to push to the RR, that is cluster admin territory refs #35575

diff --git src/hg/utils/otto/genArk/pushNewOnes.sh src/hg/utils/otto/genArk/pushNewOnes.sh
index 258873afd8b..c0b3002abd5 100755
--- src/hg/utils/otto/genArk/pushNewOnes.sh
+++ src/hg/utils/otto/genArk/pushNewOnes.sh
@@ -31,31 +31,31 @@
 
 
 #############################################################################
 ### rsync out one given directory.  The excludes avoid:
 ###  1. the various alpha.hub.txt, beta.hub.txt, public.hub.txt and user.hub.txt
 ###  2. any contrib/ directories.
 ###  These things are taken care of via the quickPush.pl script
 ###  Note, a 'hub.txt' file will go out since it does exist and is not excluded.
 ###  It actually represents the 'public.hub.txt' file even though they are
 ###  are different files.  That should be fixed up with a symLink for those
 ###  sources so they can be the same identical file.
 #############################################################################
 
 function sendTo() {
    export D="${1}"
-   for M in hgwbeta hgw0 hgw1 hgw2 "Genome-Browser-Mirror-3.dhcp.uni-bielefeld.de"
+   for M in hgwbeta
    do
      printf "ssh qateam\@${M} \"umask 002; mkdir -p '/gbdb/genark/${D}'\"\n" 1>&2
      ssh qateam@${M} "umask 002; mkdir -p '/gbdb/genark/${D}'" < /dev/null
      printf "time (rsync --delete --stats -a -L --itemize-changes --exclude=\"alpha.hub.txt\" --exclude=\"beta.hub.txt\" --exclude=\"public.hub.txt\" --exclude=\"user.hub.txt\" --exclude=\"contrib/\" \"/gbdb/genark/${D}/\" \"qateam@${M}:/gbdb/genark/${D}/\") 2>&1\n" 1>&2
      time (rsync --delete --stats -a -L --itemize-changes --exclude="alpha.hub.txt" --exclude="beta.hub.txt" --exclude="public.hub.txt" --exclude="user.hub.txt" --exclude="contrib/" "/gbdb/genark/${D}/" "qateam@${M}:/gbdb/genark/${D}/") 2>&1
    done
 }
 #############################################################################
 
 #############################################################################
 ### these listings: dev.todayList.gz and hgw1.todayList.gz are created by
 ###  cron jobs elsewhere before this script runs
 
 printf "### starting pushNewOnes.sh %s\n" "`date '+%F %T'`" 1>&2
 
@@ -84,49 +84,49 @@
         printf "ERROR: invalid directory path '/gbdb/genark/${P}'\n" 1>&2
         exit 255
       fi
    else
       printf "ERROR: invalid directory path '${P}'\n" 1>&2
       exit 255
    fi
 done
 
 else
   printf "# nothing to push, all up to date.\n" 1>&2
 fi
 
 # check existing browsers that may have new or updated files to go out
 if [ -s "new.files.ready.to.go.txt" ]; then
-   for M in hgwbeta hgw0 hgw1 hgw2 "Genome-Browser-Mirror-3.dhcp.uni-bielefeld.de"
+   for M in hgwbeta
    do
      printf "time (rsync --stats -a -L --files-from=new.files.ready.to.go.txt \"/gbdb/genark/\" \"qateam@${M}:/gbdb/genark/\") 2>&1\n" 1>&2
      time (rsync --stats -a -L --files-from=new.files.ready.to.go.txt "/gbdb/genark/" "qateam@${M}:/gbdb/genark/") 2>&1
    done
 fi
 
 # and the /gbdb/*/quickLift files:
 if [ -s "new.quickLift.ready.to.go.txt" ]; then
-   for M in hgwbeta hgw0 hgw1 hgw2 "Genome-Browser-Mirror-3.dhcp.uni-bielefeld.de"
+   for M in hgwbeta
    do
      printf "time (rsync --stats -a -L --files-from=new.quickLift.ready.to.go.txt \"/gbdb/\" \"qateam@${M}:/gbdb/\") 2>&1\n" 1>&2
      time (rsync --stats -a -L --files-from=new.quickLift.ready.to.go.txt "/gbdb/" "qateam@${M}:/gbdb/") 2>&1
    done
 fi
 
 if [ -s "new.timeStamps.txt" ]; then
-   for M in hgwbeta hgw0 hgw1 hgw2 "Genome-Browser-Mirror-3.dhcp.uni-bielefeld.de"
+   for M in hgwbeta
    do
      printf "time (rsync --stats -a -L --files-from=new.timeStamps.txt \"/gbdb/genark/\" \"qateam@${M}:/gbdb/genark/\") 2>&1\n" 1>&2
      time (rsync --stats -a -L --files-from=new.timeStamps.txt "/gbdb/genark/" "qateam@${M}:/gbdb/genark/") 2>&1
    done
 fi
 
 # and the /gbdb/*/quickLift files:
 if [ -s "new.quickLift.timeStamps.txt" ]; then
-   for M in hgwbeta hgw0 hgw1 hgw2 "Genome-Browser-Mirror-3.dhcp.uni-bielefeld.de"
+   for M in hgwbeta
    do
      printf "time (rsync --stats -a -L --files-from=new.quickLift.timeStamps.txt \"/gbdb/\" \"qateam@${M}:/gbdb/\") 2>&1\n" 1>&2
      time (rsync --stats -a -L --files-from=new.quickLift.timeStamps.txt "/gbdb/" "qateam@${M}:/gbdb/") 2>&1
    done
 fi
 
 printf "### finished pushNewOnes.sh %s\n" "`date '+%F %T'`" 1>&2