Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

As some worker-nodes are already running the new OS users can request to run on those machines by including these lines this line in their submit files:

Code Block
languagebash
themeMidnight
+SingularityImage = false
Requirements = (TARGET.OpSysAndVer == "AlmaLinux9")


Please find below an example of submit file to test the submission on Alma9 machines. 

Code Block
languagebash
themeMidnight
titleSimple submit on alma9 worker-node
$ cat submit-alma9.sub
# Unix submit description file
# sleep.sub -- simple sleep job

+SingularityImage = false
Requirements = (TARGET.OpSysAndVer == "AlmaLinux9")

batch_name              = Alma9-Sleep
executable              = sleep.sh
arguments               = 60
log                     = $(batch_name).log.$(Cluster).$(Process)
output                  = $(batch_name).out.$(Cluster).$(Process)
error                   = $(batch_name).err.$(Cluster).$(Process)
should_transfer_files   = Yes
when_to_transfer_output = ON_EXIT

queue

...