The submit file is not a shell script. Back ticks won’t work.
You can try the the $ENV(varname) syntax like this:
+Name = $ENV(MACHINENAME)
Or you can write a shell script that writes your submit ticket for you:
#!/bin/csh
echo “# My submit file” > submit.ticket `hostname` >> submit.ticket ... and so on... condor_submit submit.ticket
- Ian
From:
condor-users-bounces@xxxxxxxxxxx [mailto:condor-users-bounces@xxxxxxxxxxx] On Behalf Of Natarajan, Senthil
Hi, How to submit a job targeted to a particular machine. I tried with Name = “machine name’ in the job description, it is not working, meaning the job is running on different machine not the one I mentioned under the name. How to specify the job to run on a particular machine. Thanks, Senthil |