| 
 How is it in the PATH on the execute node? Is it there 
because it's part of the environment setup done for jobs run on this machine in 
the condor_config file for the box? If that's the case you shouldn't need a path to the executable. 
Just: 
    executable = 
generic-launcher 
    arguments = appname arg1 arg2 arg3 
... 
    transfer_executable = 
false 
If the PATH is set as part of the submitting user's login 
sets (via something like .bash_profile) you could push their environment to the 
remote machine and again call the executable assuming it's in the 
path: 
    getenv = true 
    executable = 
generic-launcher 
    arguments = appname arg1 arg2 arg3 
... 
    transfer_executable = 
false 
Does that 
help? 
- 
Ian 
 Confidentiality Notice. This message may contain information that is confidential or otherwise protected from disclosure. If you are not the intended recipient, you are hereby notified that any use, disclosure, dissemination, distribution, or copying of this message, or any attachments, is strictly prohibited. If you have received this message in error, please advise the sender by reply e-mail, and delete the message and any attachments. Thank you.  |