]> git.pld-linux.org Git - packages/daemontools.git/blob - daemontools.spec
472ec129de5fca751bea473f257e5c5e9d5ccdd8
[packages/daemontools.git] / daemontools.spec
1 Summary:        D. J. Bernstein daemontools
2 Summary(pl):    daemontools D. J. Bernstein
3 Name:           daemontools
4 Version:        0.70
5 Release:        5
6 License:        D. J. Bernstein
7 Group:          Networking/Admin
8 Source0:        http://cr.yp.to/%{name}/%{name}-%{version}.tar.gz
9 Source1:        ftp://ftp.innominate.org/pub/pape/djb/%{name}-%{version}-man.tar.gz
10 Source2:        %{name}.sysconfig
11 Source3:        %{name}.init
12 Patch0:         %{name}-time.patch
13 Prereq:         /sbin/chkconfig
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 daemontools is a collection of tools for managing UNIX services.
18
19 supervise monitors a service. It starts the service and restarts the
20 service if it dies. Setting up a new service is easy: all supervise
21 needs is a directory with a run script that runs the service.
22
23 multilog saves error messages to one or more logs. It optionally
24 timestamps each line and, for each log, includes or excludes lines
25 matching specified patterns. It automatically rotates logs to limit
26 the amount of disk space used. If the disk fills up, it pauses and
27 tries again, without losing any data.
28
29 %description -l pl
30 daemontools jest zestawem narzêdzi do zarz±dzania servisami UNIX'owymi
31
32 supervise monitoruje servisy. Startuje servisy i restartuje je, gdy
33 "umr±". Ustawienie nowego servisu jest proste: wszystko czego
34 supervise potrzebuje to katalog ze skryptami startowymi, które
35 startuj± servisy.
36
37 multilog zapisuje komunikaty o b³êdach do jednego lub wiêcej log'u.
38 Opcjonalnie stempluje ka¿d± liniê dat± oraz, w ka¿dym logu, do³±cza
39 lub wy³±cza linie pasuj±ce do okre¶lonych wzorców. Automatycznie robi
40 rotating logów do limitu miejsca na dysku. Je¿eli dysk jest
41 zape³niony, robi pauzê i próbuje ponownie, bez strat danych.
42
43 %prep
44 %setup -q
45 %patch0 -p1
46 tar zxf %{SOURCE1}
47
48 %build
49 echo %{_bindir} >conf-home
50
51 %{__make}
52
53 %install
54 rm -rf $RPM_BUILD_ROOT
55 install -d $RPM_BUILD_ROOT{%{_sbindir},%{_mandir}/man8} \
56         $RPM_BUILD_ROOT%{_sysconfdir}/{rc.d/init.d,sysconfig} \
57         $RPM_BUILD_ROOT/var/lib/service $RPM_BUILD_ROOT/service
58
59 install envdir envuidgid fghack multilog setlock setuidgid softlimit \
60         supervise supervise svc svok svscan svstat tai64n tai64nlocal \
61         $RPM_BUILD_ROOT%{_sbindir}
62 install %{name}-%{version}-man/*.8* $RPM_BUILD_ROOT%{_mandir}/man8
63 install %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/svscan
64 install %{SOURCE3} $RPM_BUILD_ROOT/etc/rc.d/init.d/svscan
65
66 gzip -9nf CHANGES README TODO
67
68 %clean
69 rm -rf $RPM_BUILD_ROOT
70
71 %post
72 /sbin/chkconfig --add svscan
73 if [ -f /var/lock/subsys/svscan ]; then
74         /etc/rc.d/init.d/svscan restart >&2
75 else
76         echo "Execute \"/etc/rc.d/init.d/svscan\" to start svscan daemon."
77 fi
78
79 %preun
80 if [ "$1" = "0" ]; then
81         if [ -f /var/lock/subsys/svscan ]; then
82                 /etc/rc.d/init.d/svscan stop >&2
83         fi
84         /sbin/chkconfig --del svscan
85 fi
86
87 %files
88 %defattr(644,root,root,755)
89 %doc *.gz
90 %attr(755,root,root) %{_sbindir}/*
91 %attr(700,root,root) /service
92 %attr(700,root,root) /var/lib/service
93 %attr(754,root,root) /etc/rc.d/init.d/svscan
94 %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/svscan
95 %{_mandir}/man8/*
This page took 0.079591 seconds and 2 git commands to generate.