Code

we were missing some docs in the RPM
[nagiosplug.git] / nagios-plugins.spec.in
1 %{!?custom:%global custom 0}
3 %define archive nagios-plugins
5 %if %custom
6 %define name %{archive}-custom
7 %else
8 %define name %{archive}
9 %endif
11 %define version %%{VER}
12 %define release %%{REL}
13 %define source %{archive}-%{version}-%{release}
15 Name: %{name}
16 Version: %{version}
17 Release: %{release}
18 Copyright: GPL
19 Source: %{source}.tar.gz
20 BuildRoot: %{_tmppath}/%{name}-buildroot
21 Prefix: %{_prefix}/lib/nagios/plugins
22 Packager: Karl DeBisschop <kdebisschop@users.sourceforge.net>
23 Vendor: Nagios Plugin Development Group
24 %if %custom
25 Obsoletes: nagios-plugins nagios-plugins-extras
26 %else
27 Obsoletes: nagios-plugins-custom
28 %endif
29 AutoReqProv: no
30 Summary: Host/service/network monitoring program plugins for Nagios
31 Group: Applications/System
34 %description
36 Nagios is a program that will monitor hosts and services on your
37 network, and to email or page you when a problem arises or is
38 resolved. Nagios runs on a unix server as a background or daemon
39 process, intermittently running checks on various services that you
40 specify. The actual service checks are performed by separate "plugin"
41 programs which return the status of the checks to Nagios.
43 This package contains the basic plugins necessary for use with the
44 Nagios package.  This package should install cleanly on almost any
45 RPM-based system.
48 %package extras
49 Summary: Plugins which depend on the presence of other packages
50 Group: Applications/System
52 %description extras
54 Nagios is a program that will monitor hosts and services on your
55 network, and to email or page you when a problem arises or is
56 resolved. Nagios runs on a unix server as a background or daemon
57 process, intermittently running checks on various services that you
58 specify. The actual service checks are performed by separate "plugin"
59 programs which return the status of the checks to Nagios.
61 This package contains plugins which use additional libraries or system
62 calls that are not installed on all systems.  As a result, most users
63 will need to install the '--nodeps' option when invoking `rpm`
66 %prep
67 %setup -q -n %{source}
70 %build
71 CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure \
72 --prefix=%{_prefix}/lib/nagios/plugins \
73 --libexecdir=%{_prefix}/lib/nagios/plugins \
74 --with-cgiurl=/nagios/cgi-bin
75 make
78 %install
79 make AM_INSTALL_PROGRAM_FLAGS="" DESTDIR=${RPM_BUILD_ROOT} install
80 install -d ${RPM_BUILD_ROOT}/etc/nagios
81 install -m 664 command.cfg ${RPM_BUILD_ROOT}/etc/nagios
83 %clean
84 rm -rf $RPM_BUILD_ROOT
87 %files
88 %defattr(-,root,root)
89 %config(missingok,noreplace) /etc/nagios/command.cfg
90 %doc CODING COPYING FAQ INSTALL LEGAL README REQUIREMENTS SUPPORT
91 %doc ChangeLog command.cfg
92 %defattr(775,root,root)
93 %dir %{_prefix}/lib/nagios/plugins
94 %if %custom
95 %{_prefix}/lib/nagios/plugins/*
96 %else
97 %{_prefix}/lib/nagios/plugins/check_by_ssh
98 %{_prefix}/lib/nagios/plugins/check_breeze
99 %{_prefix}/lib/nagios/plugins/check_dig
100 %{_prefix}/lib/nagios/plugins/check_disk
101 %{_prefix}/lib/nagios/plugins/check_disk_smb
102 %{_prefix}/lib/nagios/plugins/check_dns
103 %{_prefix}/lib/nagios/plugins/check_dummy
104 %{_prefix}/lib/nagios/plugins/check_flexlm
105 %{_prefix}/lib/nagios/plugins/check_ftp
106 %{_prefix}/lib/nagios/plugins/check_http
107 %{_prefix}/lib/nagios/plugins/check_ifoperstatus
108 %{_prefix}/lib/nagios/plugins/check_ifstatus
109 %{_prefix}/lib/nagios/plugins/check_imap
110 %{_prefix}/lib/nagios/plugins/check_ircd
111 %{_prefix}/lib/nagios/plugins/check_load
112 %{_prefix}/lib/nagios/plugins/check_log
113 %{_prefix}/lib/nagios/plugins/check_mailq
114 %{_prefix}/lib/nagios/plugins/check_mrtg
115 %{_prefix}/lib/nagios/plugins/check_mrtgtraf
116 %{_prefix}/lib/nagios/plugins/check_nagios
117 %{_prefix}/lib/nagios/plugins/check_nntp
118 %{_prefix}/lib/nagios/plugins/check_ntp
119 %{_prefix}/lib/nagios/plugins/check_nwstat
120 %{_prefix}/lib/nagios/plugins/check_oracle
121 %{_prefix}/lib/nagios/plugins/check_overcr
122 %{_prefix}/lib/nagios/plugins/check_ping
123 %{_prefix}/lib/nagios/plugins/check_pop
124 %{_prefix}/lib/nagios/plugins/check_procs
125 %{_prefix}/lib/nagios/plugins/check_real
126 %{_prefix}/lib/nagios/plugins/check_rpc
127 %{_prefix}/lib/nagios/plugins/check_sensors
128 %{_prefix}/lib/nagios/plugins/check_smtp
129 %{_prefix}/lib/nagios/plugins/check_ssh
130 %{_prefix}/lib/nagios/plugins/check_swap
131 %{_prefix}/lib/nagios/plugins/check_tcp
132 %{_prefix}/lib/nagios/plugins/check_time
133 %{_prefix}/lib/nagios/plugins/check_udp
134 %{_prefix}/lib/nagios/plugins/check_ups
135 %{_prefix}/lib/nagios/plugins/check_users
136 %{_prefix}/lib/nagios/plugins/check_vsz
137 %{_prefix}/lib/nagios/plugins/check_wave
138 %{_prefix}/lib/nagios/plugins/negate
139 %{_prefix}/lib/nagios/plugins/utils.pm
140 %{_prefix}/lib/nagios/plugins/utils.sh
141 %{_prefix}/lib/nagios/plugins/urlize
142 %endif
144 %if ! %custom
145 %files extras
146 %defattr(775,root,root)
147 %{_prefix}/lib/nagios/plugins/check_fping
148 %{_prefix}/lib/nagios/plugins/check_game
149 %{_prefix}/lib/nagios/plugins/check_ldap
150 %{_prefix}/lib/nagios/plugins/check_mysql
151 %{_prefix}/lib/nagios/plugins/check_pgsql
152 %{_prefix}/lib/nagios/plugins/check_radius
153 %{_prefix}/lib/nagios/plugins/check_snmp
154 %{_prefix}/lib/nagios/plugins/check_hpjd
156 %endif
158 %changelog
159 * Wed Jan 17 2001 Karl DeBisschop <karl@debisschop.net> (1.2.9-1)
160 - switch from /usr/libexec to /usr/lib because FHS has no libexec
161 - use 'custom' macro define to merge with nagios-plugins-custom spec
162 - add check_game to extras
164 * Mon Jun 26 2000 Karl DeBisschop <karl@debisschop.net>
165 - Release 1.2.8-4 (check_ping bug fix)
166 - use bzip2 insted of gzip for mandrake compatibility
168 * Thu Jun 22 2000 Karl DeBisschop <karl@debisschop.net>
169 - Release 1.2.8-3 (bug fixes)
170 - Add macros to spec where possible
172 * Fri Jun 16 2000 Karl DeBisschop <karl@debisschop.net>
173 - Release 1.2.8-2 (bug fixes)
175 * Fri Jun 09 2000 Karl DeBisschop <karl@debisschop.net>
176 - Release to 1.2.8
178 * Wed Jun 07 2000 Karl DeBisschop <karl@debisschop.net>
179 - Upgrade to 1.2.8pre7
181 * Sat Jun 03 2000 Karl DeBisschop <karl@debisschop.net>
182 - Upgraded to 1.2.8pre5
183 - use RPM_OPT_FALGS to set compiler options
184 - cahneg group to Applications/System
186 * Fri May 19 2000 Karl DeBisschop <karl@debisschop.net>
187 - Upgraded to 1.2.8pre3 (release-3)
189 * Mon Mar 20 2000 Karl DeBisschop <karl@debisschop.net>
190 - Upgraded to 1.2.8b2
192 * Tue Dec 14 1999 Adam Jacob <adam@cybertrails.com> (1.2.7-1cvs)
193 - Upgraded package from 1.2.6 to 1.2.7 from the latest CVS code
194 - Modified SPEC file to contain the proper build_root stuff. :)
196 * Tue Oct 19 1999 Mike McHenry <mmchen@minn.net> (1.2.6)
197 - Upgraded package from 1.2.4 to 1.2.6
198 - Resolved dependancy issue with libpq.so
199 - Added support for check_fping
201 * Fri Sep 03 1999 Mike McHenry <mmchen@minn.net> (1.2.4)
202 - Upgraded package from 1.2.2 to 1.2.4
204 * Mon Aug 16 1999 Mike McHenry <mmchen@minn.net> (1.2.2)
205 - First RPM build (1.2.2)