]> git.pld-linux.org Git - packages/autolog.git/blob - autolog.spec
- release 2 for Ac (1 is for Ra)
[packages/autolog.git] / autolog.spec
1 Summary:        Terminates connections for idle users
2 Summary(pl):    Przerywa po³±czenia bezczynnych u¿ytkowników
3 Name:           autolog
4 Version:        0.40
5 Release:        2
6 License:        GPL
7 Group:          Daemons
8 Source0:        ftp://sunsite.unc.edu/pub/Linux/system/admin/idle/%{name}-%{version}.tar.gz
9 # Source0-md5:  bcca87156acfdce9171acc90b35f9d0d
10 Source1:        %{name}.init
11 PreReq:         rc-scripts
12 Requires(post,preun):   /sbin/chkconfig
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Autolog is a program to automatically log off users who are idle for a
17 specified amount of time. A configuration file allows you to specify
18 different idle times and logout rules for different users, groups, tty
19 lines, etc.
20
21 %description -l pl
22 Autolog to program automatycznie wylogowuj±cy u¿ytkowników, którzy nie
23 korzystaj± przez okre¶lony czas z terminala. Plik konfiguracyjny
24 pozwala na okre¶lenie czasów oraz regu³ postêpowania dla ró¿nych
25 u¿ytkowników, grup, linii tty itp.
26
27 %prep
28 %setup -q
29
30 %build
31 # Remove stale binaries
32 %{__make} clean
33
34 %{__make} CFLAGS="%{rpmcflags}"
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38 install -d $RPM_BUILD_ROOT{%{_sbindir},%{_mandir}/man{5,8},/etc/rc.d/init.d}
39
40 install autolog $RPM_BUILD_ROOT%{_sbindir}
41 install autolog.conf $RPM_BUILD_ROOT%{_sysconfdir}
42 install autolog.8.gz $RPM_BUILD_ROOT%{_mandir}/man8
43 install autolog.conf.5.gz $RPM_BUILD_ROOT%{_mandir}/man5
44 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %post
50 /sbin/chkconfig --add autolog
51 if [ -f /var/lock/subsys/autolog ]; then
52         /etc/rc.d/init.d/autolog restart >&2
53 else
54         echo "Run \"/etc/rc.d/init.d/autolog start\" to activate autolog."
55 fi
56
57 %preun
58 if [ "$1" = "0" ]; then
59         if [ -f /var/lock/subsys/autolog ]; then
60                 /etc/rc.d/init.d/autolog stop >&2
61         fi
62         /sbin/chkconfig --del autolog
63 fi
64
65 %files
66 %defattr(644,root,root,755)
67 %doc README CHANGES
68 %attr(755,root,root) %{_sbindir}/%{name}
69 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/autolog.conf
70 %attr(754,root,root) /etc/rc.d/init.d/%{name}
71 %{_mandir}/man?/*
This page took 0.077403 seconds and 4 git commands to generate.