Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] how can i congigure two machines
- Date: Fri, 15 Jul 2005 07:59:20 -0500
- From: Srirangam Addepalli <rangam@xxxxxxxxx>
- Subject: Re: [Condor-users] how can i congigure two machines
There are many ways u can do that,
Eg: for vanialla universe from machine m1 to run on machine m2
universe = vanilla
requirements = (FileSystemDomain != "dummy") && (Arch != "dummy") && (OpSys != "dummy") && (Machine == "m2")
executable = test.sh
log = test.log
output = test.out
transfer_input_files = test.sh
should_transfer_files = YES
when_to_transfer_output = ON_EXIT_OR_EVICT
queue
ALternately if both are configured to be running on diff pool
you can submit a job with -r or -n
Rangam