[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] Condor 7.0.2 in combination with Windows XP andVista



On Thu, Jun 19, 2008 at 3:23 PM, Thomas Laue <Thomas.Laue@xxxxxxxx> wrote:
> Submit file:
>
> Executable = C:\WINDOWS\system32\cmd.exe
> Requirements = (Inpho_ApplicationsMaster51_Directory =!= UNDEFINED && Inpho_ApplicationsMaster51_Installed =?= True && Inpho_ApplicationsMaster51_OrthoMaster_Installed =?= True)
> Priority = 0
> Universe = Vanilla
> Output = offingen_with_subblocks_complete_$(Cluster)_$(Process).out
> Error = offingen_with_subblocks_complete_$(Cluster)_$(Process).out
> Log = offingen_with_subblocks_complete_$(Cluster)_$(Process).log
> Getenv = True
> Environment = ERMAPPER=dummy
>
> leave_in_queue = True
> on_exit_remove = (ExitCode != -20)
> Initialdir = \\DEMO4\I$\inpho_data\Offingen\Project\condor\job0
> Arguments = " /C call '\\DEMO4\I$\inpho_data\Offingen\Project\condor\job0\offingen_with_subblocks_complete_151.bat' $$(Inpho_ApplicationsMaster51_Directory)"
> Queue
> ...
>
> Best Regards / Mit freundlichen Grüßen

this
> Executable = C:\WINDOWS\system32\cmd.exe
is not a good plan (even with transfer_executable false as c:\Wuindows
might not be the system dir, not to mention 32/64bit issues etc).
Better if what you want to do is run a batch command is transfer the
batch file itself so.

Executable = \\DEMO4\I$\inpho_data\Offingen\Project\condor\job0\offingen_with_subblocks_complete_151.bat
and then use
Arguments = $$(Inpho_ApplicationsMaster51_Directory)

should work far better and more stably

Matt