NOAA-EMC / gfs-utils

Utility programs for global-workflow
0 stars 19 forks source link

Update modules on orion for rocky 8 #72

Closed aerorahul closed 3 months ago

aerorahul commented 3 months ago

Description

This PR:

Type of change

Change characteristics

How has this been tested?

Checklist

DavidHuber-NOAA commented 3 months ago

Detect machine also needs to be updated as both Orion and Hercules now have /apps/other. Suggest changing https://github.com/NOAA-EMC/gfs-utils/blob/6df304f6f09006593643a5a1a890e1f940132cb5/ush/detect_machine.sh#L76-L83

to the same as the GSI:

 elif [[ -d /work ]]; then 
  mount=$(findmnt -n -o SOURCE /home)
  if [[ ${mount} =~ "hercules" ]]; then
    MACHINE_ID=hercules
  else
    MACHINE_ID=orion
  fi