Changes between Version 12 and Version 13 of NightOperations/Policies/software


Ignore:
Timestamp:
Oct 3, 2022 3:21:23 PM (20 months ago)
Author:
stevenj
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NightOperations/Policies/software

    v12 v13  
    6464=== Searching the repositories of installed code ===
    6565
    66 {{{codepuller}}} is a tool written by Chris R which will search all of our repositories on cetus and dumps the latest trunk into /data1/het/sources, or the entire repository where /trunk does not exist. The resulting directory tree is updated daily. You can grep this directory for any string, thus searching all current production code. It does not include branches (development code) or tags (past releases).  Here are some examples:
     66{{{codepuller}}} is a tool written by Chris R which regularly collects all code from our repositories on cetus and dumps the latest trunk into /data1/het/sources, or the entire repository where /trunk does not exist. The resulting directory tree is updated daily. You can grep this directory for any string, thus searching all current production code. It does not include branches (development code) or tags (past releases).  Here are some examples of how to search for commands:
    6767
    6868{{{
    69 codepuller examples here....
     69[stevenj@zeus ~]$ grep -r V309 /data1/het/sources/*
     70/data1/het/sources/cetus/astronomy/srdev/astro/operations/eon_tasks.sh:    log "Script aborted. Check state of lamps, LRS2 IP and VG and VIRUS V309 IP"
     71/data1/het/sources/cetus/astronomy/srdev/astro/operations/eon_tasks.sh:    apcCmd on V309_IONPump
     72/data1/het/sources/cetus/astronomy/miscutils/opscals.sh:##check V309 IP
     73/data1/het/sources/cetus/astronomy/miscutils/opscals.sh:#removed 18 Aug 2022 when V309IP was decommissioned and new ion pumps installed
     74/data1/het/sources/cetus/astronomy/miscutils/opscals.sh:#    echo "V309 IP is still powered on!! I will not continue";
     75/data1/het/sources/cetus/hetdex-pr/het/apc/testing/VEncl2MiscPDU.conf:outlets = VEncl2PLC,V309_IONPump,VEncl2Camera
     76
     77
     78[stevenj@zeus ~]$ grep -r ipvg /data1/het/sources/*
     79/data1/het/sources/cetus/astronomy/srdev/astro/operations/eon_tasks.sh:    ipvg on > /dev/null
     80/data1/het/sources/cetus/astronomy/srdev/astro/operations/eon_tasks.sh:    log "Script did not touch IP/VG so please do not forget to run ipvg on -V when finished"
     81/data1/het/sources/cetus/astronomy/ra/operations/eon_tasks.sh:    ipvg on > /dev/null
     82/data1/het/sources/cetus/astronomy/ra/operations/eon_tasks.sh:[ $skipip = "y" ] && log "Script did not touch IP/VG so please do not forget to run ipvg on when finished"
     83/data1/het/sources/cetus/astronomy/ra/operations/virus_tests.sh:        ipvg on -V > /dev/null
     84/data1/het/sources/cetus/astronomy/ra/operations/virus_tests.sh:    ipvg off -V > /dev/null
     85/data1/het/sources/cetus/astronomy/adsf/adsf.sh:                ipvg on -V > /dev/null
     86/data1/het/sources/cetus/astronomy/adsf/adsf.sh:    ipvg off -V > /dev/null
     87/data1/het/sources/cetus/hetdex-pr/het/scripting/scripts/ipvg.sh:    USAGE: ipvg <on|off> [stat]
     88/data1/het/sources/cetus/hetdex-pr/het/scripting/scripts/cal.py:            os.system("ipvg off >/dev/null 2>&1")
     89/data1/het/sources/cetus/hetdex-pr/het/scripting/scripts/cal.py:                os.system("ipvg on")
    7090
    7191