FYI
-------- Original Message --------
Subject: [HTCondor-users] Bug in condor_qsub
Date: Mon, 9 Sep 2013 11:13:59 +0200
From: Chris Filo Gorgolewski <krzysztof.gorgolewski@xxxxxxxxx>
Reply-To: HTCondor-Users Mail List <htcondor-users@xxxxxxxxxxx>
To: HTCondor-Users Mail List <htcondor-users@xxxxxxxxxxx>
Due to addition of interactive mode behaviour of "-" changed breaking
condor_qsub. The following patch will fix it. It would be fantastic if
this was incorporated in the next release.
--- /usr/bin/condor_qsub2013-07-24 12:45:27.000000000 +0200
+++ /home/raid3/gorgolewski/bin/condor_qsub2013-09-09 11:06:12.865587821
+0200
@@ -1100,7 +1100,7 @@
 if [ -n "$job_deps" ]; then
 sentinel_file="$(mktemp --tmpdir
cluster${cluster_id}_sentinel.XXXXXXXXXXXXX)"
 create_dep_sentinel $sentinel_file "$job_deps" "$cluster_id"
-condor_submit - < $sentinel_file.submit > /dev/null
+condor_submit < $sentinel_file.submit > /dev/null
 [ $condor_keep_files -eq 0 ] && rm $sentinel_file.submit || true
 fi
 else
Best,
Chris
_______________________________________________
HTCondor-users mailing list
To unsubscribe, send a message to htcondor-users-request@xxxxxxxxxxx with a
subject: Unsubscribe
You can also unsubscribe by visiting
https://lists.cs.wisc.edu/mailman/listinfo/htcondor-users
The archives can be found at:
https://lists.cs.wisc.edu/archive/htcondor-users/
|