source: trunk/pkg/rpm/jobmonarch-jobmond.spec @ 980

Last change on this file since 980 was 507, checked in by bastiaans, 16 years ago

Dave Love's SGE code patches, see below:

Mon Dec 10 15:46:45 GMT 2007 Dave Love <fx@…>

  • Tidy/fix SGE changes.

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 
1Buildroot: 
2Name: jobmonarch-jobmond
3Version: 
4Release: 
5Summary: Job Monitoring Daemon
6License: GPL
7Distribution: Fedora
8Group: 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
17PATH=/bin:/sbin:/usr/bin:/usr/sbin
18
19if [ -x /etc/init.d/jobmond ]
20        then
21
22                chkconfig --add jobmond
23                chkconfig jobmond on
24                /etc/init.d/jobmond restart
25
26fi
27
28%preun
29#!/bin/sh
30
31/etc/init.d/jobmond stop
32chkconfig jobmond off
33chkconfig --del jobmond
34
35
36%description
37
38
39Job 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.