Last change
on this file since 980 was
507,
checked in by bastiaans, 15 years ago
|
Dave Love's SGE code patches, see below:
Mon Dec 10 15:46:45 GMT 2007 Dave Love <fx@…>
Fri Dec 7 10:57:55 GMT 2007 Dave Love <fx@…>
- Add note about SGE tasks to overview template.
Fri Nov 9 15:39:41 GMT 2007 Dave Love <fx@…>
- Replace previous SGE implementation with a different one.
This provides the full set of monarch data.
There's some associated restructuring involving the PBS code.
Fri Nov 9 15:27:01 GMT 2007 Dave Love <fx@…>
- jobmond.conf comment fix.
Fri Nov 9 15:21:25 GMT 2007 Dave Love <fx@…>
- Somewhat modify RPM spec files.
Wed Nov 7 17:49:37 GMT 2007 Dave Love <fx@…>
- Modify jobmond for use with SGE.
|
File size:
720 bytes
|
Line | |
---|
1 | Buildroot: |
---|
2 | Name: jobmonarch-jobmond |
---|
3 | Version: |
---|
4 | Release: |
---|
5 | Summary: Job Monitoring Daemon |
---|
6 | License: GPL |
---|
7 | Distribution: Fedora |
---|
8 | Group: Applications/System |
---|
9 | |
---|
10 | %define _rpmdir ../ |
---|
11 | %define _rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.rpm |
---|
12 | %define _unpackaged_files_terminate_build 0 |
---|
13 | |
---|
14 | %post |
---|
15 | #!/bin/sh |
---|
16 | |
---|
17 | PATH=/bin:/sbin:/usr/bin:/usr/sbin |
---|
18 | |
---|
19 | if [ -x /etc/init.d/jobmond ] |
---|
20 | then |
---|
21 | |
---|
22 | chkconfig --add jobmond |
---|
23 | chkconfig jobmond on |
---|
24 | /etc/init.d/jobmond restart |
---|
25 | |
---|
26 | fi |
---|
27 | |
---|
28 | %preun |
---|
29 | #!/bin/sh |
---|
30 | |
---|
31 | /etc/init.d/jobmond stop |
---|
32 | chkconfig jobmond off |
---|
33 | chkconfig --del jobmond |
---|
34 | |
---|
35 | |
---|
36 | %description |
---|
37 | |
---|
38 | |
---|
39 | Job MonArch's monitoring daemon. |
---|
40 | |
---|
41 | %files |
---|
42 | "/etc/init.d/jobmond" |
---|
43 | %config "/etc/sysconfig/jobmond" |
---|
44 | "/usr/sbin/jobmond.py" |
---|
45 | "/usr/sbin/jobmond" |
---|
46 | %config "/etc/jobmond.conf" |
---|
Note: See
TracBrowser
for help on using the repository browser.