...
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 | ||||
---|---|---|---|---|
| ||||
+SingularityImage = false
Requirements = (TARGET.OpSysAndVer == "AlmaLinux9") |
Please find below an example of submit file to test the submission on Alma9 machines.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
$ 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 |
...