File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 2
2
#define gitrev osg
3
3
4
4
Name: htcondor-ce
5
- Version: 1.12
5
+ Version: 1.13
6
6
Release: 1%{?gitrev:.%{gitrev }git}%{?dist }
7
7
Summary: A framework to run HTCondor as a CE
8
8
313
313
%attr(1777,root,root) %dir %{_localstatedir }/lib/gratia/condorce_data
314
314
315
315
%changelog
316
+ * Mon Apr 27 2015 Brian Lin <blin@cs.wisc.edu> - 1.13-1
317
+ - Fix bug that prevented HTCondor CE service from starting with multiple job routes
318
+
316
319
* Mon Apr 27 2015 Brian Lin <blin@cs.wisc.edu> - 1.12-1
317
320
- Add ability to constrain via arbitrary ClassAd expression in condor_ce_info_status (SOFTWARE-1842)
318
321
- condor_ce_run now accepts extra attributes via file (SOFTWARE-1641)
Original file line number Diff line number Diff line change @@ -50,13 +50,11 @@ start() {
50
50
echo -n $" Starting Condor-CE daemons: "
51
51
52
52
# Check validity of job router knobs
53
- for ATTR in ' JOB_ROUTER_DEFAULTS' ' JOB_ROUTER_ENTRIES' ; do
54
- python -c " import htcondor; import classad; classad.ExprTree(htcondor.param[\" $ATTR \" ])" & > /dev/null
55
- if [ $? -ne 0 ]; then
56
- echo " Could not read $ATTR in the HTCondor CE configuration. Please verify syntax correctness."
57
- exit 6
58
- fi
59
- done
53
+ python -c " import htcondor; import classad; classad.ExprTree(htcondor.param['JOB_ROUTER_DEFAULTS'])" & > /dev/null
54
+ if [ $? -ne 0 ]; then
55
+ echo " Could not read JOB_ROUTER_DEFAULTS in the HTCondor CE configuration. Please verify syntax correctness."
56
+ exit 6
57
+ fi
60
58
61
59
daemon --pidfile $pidfile --check $prog /usr/share/condor-ce/condor_ce_startup -pidfile $pidfile
62
60
RETVAL=$?
You can’t perform that action at this time.
0 commit comments