]> git.pld-linux.org Git - packages/monit.git/blob - monit.spec
- rc-scripts >= 0.4.0.15 for --waitforname
[packages/monit.git] / monit.spec
1 Summary:        Process monitor and restart utility
2 Summary(pl):    Narzêdzie do monitorowania procesów i ich restartowania
3 Name:           monit
4 Version:        4.8.2
5 Release:        1.2
6 License:        GPL
7 Group:          Applications/Console
8 Source0:        http://www.tildeslash.com/monit/dist/%{name}-%{version}.tar.gz
9 # Source0-md5:  e7ad6056c71becf014653f6597d110ca
10 Source1:        %{name}.init
11 Source2:        %{name}rc
12 Patch0:         %{name}-localhost-http.patch
13 URL:            http://www.tildeslash.com/monit/
14 BuildRequires:  bison
15 BuildRequires:  flex
16 BuildRequires:  openssl-devel >= 0.9.7d
17 BuildRequires:  rpmbuild(macros) >= 1.268
18 Requires(post,preun):   /sbin/chkconfig
19 Requires:       rc-scripts >= 0.4.0.15
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 monit is an utility for monitoring daemons or similar programs running
24 on a Unix system. It will start specified programs if they are not
25 running and restart programs not responding.
26
27 %description -l pl
28 monit jest narzêdziem do monitorowania demonów oraz podobnych
29 programów pracuj±cych w systemie Unix. monit zrestartuje podany
30 program w momencie gdy przestaje on pracowaæ lub w momencie gdy
31 program przestaje odpowiadaæ.
32
33 %prep
34 %setup -q
35 %patch0 -p1
36
37 %build
38 %configure \
39         --with-ssl-lib-dir=%{_libdir}
40 %{__make}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44 install -d $RPM_BUILD_ROOT{/etc/{rc.d/init.d,monit},%{_sbindir}}
45
46 %{__make} install \
47         DESTDIR=$RPM_BUILD_ROOT
48
49 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
50 # NOTE: 'include *.monitrc' will fail if nothing matches the glob.
51 install %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/monitrc
52 install monitrc $RPM_BUILD_ROOT%{_sysconfdir}/monit/default.monitrc
53 mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/monit
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %post
59 /sbin/chkconfig --add %{name}
60 %service monit restart "Monit Daemon"
61
62 %preun
63 if [ "$1" = "0" ]; then
64         %service monit stop
65         /sbin/chkconfig --del %{name}
66 fi
67
68 %files
69 %defattr(644,root,root,755)
70 %doc doc/*.html CHANGES.txt CONTRIBUTORS FAQ.txt README*
71 %attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}rc
72 %dir %attr(751,root,root) %{_sysconfdir}/monit
73 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}/default.monitrc
74 %attr(755,root,root) %{_sbindir}/monit
75 %attr(754,root,root) /etc/rc.d/init.d/%{name}
76 %{_mandir}/man?/*
This page took 0.0642 seconds and 4 git commands to generate.