IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 42459


Ignore:
Timestamp:
Apr 28, 2023, 10:35:29 AM (3 years ago)
Author:
eugene
Message:

add burntool / psvideo tools; fix issue in check.rawfix.sh for mode nights

Location:
trunk/tools/eam/rawfix.20230221
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/eam/rawfix.20230221/Makefile

    r42455 r42459  
    1212rawfix.fixchip.pt \
    1313rawfix.md5sum.pt \
    14 rawfix.md5chk.pt
     14rawfix.md5chk.pt \
     15rawfix.burntool.pt
    1516
    1617# interfaces with the rawfix database
     
    2829get_hosts_md5s.sh \
    2930get_md5s_instances.pl \
    30 check_md5s_dateobs.pl
     31check_md5s_dateobs.pl \
     32psvideostats.sh \
     33ipp_apply_burntool_psvideo.pl
    3134
    3235# user tools, but not used by the tasks
  • trunk/tools/eam/rawfix.20230221/src/check.rawfix.sh

    r42455 r42459  
    4949
    5050  set mynight = $2
    51   mysql -E $DBOPTS -e "select * from nights where (dateobs = '$mynight')"
     51  mysql $DBOPTS -E -e "select * from nights where (dateobs = '$mynight')"
    5252  exit 0
    5353endif
     
    6161  set mystate = $2
    6262
    63   if ($mystate == "ckchip.new")    goto good_state
    64   if ($mystate == "ckchip.done")   goto good_state
    65   if ($mystate == "ckchip.fail")   goto good_state
    66   if ($mystate == "fixchip.new")   goto good_state
    67   if ($mystate == "fixchip.done")  goto good_state
    68   if ($mystate == "fixchip.fail")  goto good_state
    69   if ($mystate == "md5sum.new")    goto good_state
    70   if ($mystate == "md5sum.done")   goto good_state
    71   if ($mystate == "md5sum.fail")   goto good_state
    72   if ($mystate == "md5chk.new")    goto good_state
    73   if ($mystate == "md5chk.done")   goto good_state
    74   if ($mystate == "md5chk.fail")   goto good_state
     63  if ($mystate == "ckchip.new")      goto good_state
     64  if ($mystate == "ckchip.done")     goto good_state
     65  if ($mystate == "ckchip.fail")     goto good_state
     66  if ($mystate == "fixchip.new")     goto good_state
     67  if ($mystate == "fixchip.done")    goto good_state
     68  if ($mystate == "fixchip.fail")    goto good_state
     69  if ($mystate == "md5sum.new")      goto good_state
     70  if ($mystate == "md5sum.done")     goto good_state
     71  if ($mystate == "md5sum.fail")     goto good_state
     72  if ($mystate == "md5chk.new")      goto good_state
     73  if ($mystate == "md5chk.done")     goto good_state
     74  if ($mystate == "md5chk.fail")     goto good_state
     75  if ($mystate == "burntool.new")    goto good_state
     76  if ($mystate == "burntool.done")   goto good_state
     77  if ($mystate == "burntool.fail")   goto good_state
    7578
    7679  echo "ERROR: unknown mode $mystate"
Note: See TracChangeset for help on using the changeset viewer.