2c5745312a9df254a98889a859897b803a642aa0
kuhn
  Thu Feb 28 13:00:29 2013 -0800
added genome-euro to realTime.csh and adjusted a few other scripts to enable it.  added verbose mode to realTime.csh so you can get machine names instead of just a dot
diff --git src/utils/qa/checkMachineName.csh src/utils/qa/checkMachineName.csh
index ea3daa9..ad4757c 100755
--- src/utils/qa/checkMachineName.csh
+++ src/utils/qa/checkMachineName.csh
@@ -1,51 +1,51 @@
 #!/bin/tcsh
 source `which qaConfig.csh`
 
 
 #######################
 #
 #  01-07-2005
 #  checks if machine name is legitimate.
 #  gets the names of all databases that contain a given table
 #  
 #  Robert Kuhn
 # 
 #######################
 
 if ($#argv < 1 || $#argv > 3) then
  echo ""
  echo "  checks if machine names are legitimate."
  echo "    no output if machine is ok."
  echo
  echo "    usage: machinename [machine2] [machine3]"
  echo ""
  exit 1
 endif
 
-set allMachines=" hgwdev hgwbeta hgw1 hgw2 hgw3 hgw4 hgw5 hgw6 hgw7 hgw8 rr RR"
+set allMachines=" hgwdev hgwbeta hgw1 hgw2 hgw3 hgw4 hgw5 hgw6 hgw7 hgw8 rr RR genome-euro"
 
 set mach1 = $argv[1]
 echo $allMachines | grep -w "$mach1" > /dev/null
 if ($status) then
   echo "\n $mach1 is not a valid machine.\n"
   exit 1
 endif
 
 if ($#argv > 1) then
   set mach2 = $argv[2]
   echo $allMachines | grep -w "$mach2" > /dev/null
   if ($status) then
     echo "\n $mach2 is not a valid machine.\n"
     exit 1
   endif
 endif
 
 if ($#argv == 3) then
   set mach3 = $argv[3]
   echo $allMachines | grep -w "$mach3" > /dev/null
   if ($status) then
     echo "\n $mach3 is not a valid machine.\n"
     exit 1
   endif
 endif