On Fri, Oct 22, 2010 at 11:56 AM, Sónia Liléo
<sonia.lileo@xxxxx> wrote:
I would like that Condor runs the job
file using the following command (on Linux),
wine cmd /c condor_exec.bat
I wouldn't even use a wrapper for this. In your submit file:
executable = wine
arguments = cmd /c batch_file.bat
should_transfer_files = yes
transfer_input_files = <path to my>\batch_file.bat
transfer_executable = false
That's close but probably requires some tweaking. For example: you may need to add in a "env = ..." line to the submit file to get the environment setup properly on the remote machine in order to run wine.
- Ian