/[smeserver]/rpms/rkhunter/sme7/rkhunter.spec
ViewVC logotype

Contents of /rpms/rkhunter/sme7/rkhunter.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.8 - (show annotations) (download)
Tue Feb 5 16:36:41 2008 UTC (16 years, 3 months ago) by slords
Branch: MAIN
CVS Tags: rkhunter-1_3_0-6_el4_sme
Changes since 1.7: +5 -2 lines
Updates

1 # No debuginfo:
2 %define debug_package %{nil}
3
4 # If you want to debug, uncomment the next line and remove
5 # the duplicate percent sign (due to macro expansion)
6 #%%dump
7
8 %define name rkhunter
9 %define ver 1.3.0
10 %define rel 6
11 %define epoch 0
12
13 # Don't change this define or also:
14 # 1. installer.sh --layout custom /temporary/dir/usr --striproot /temporary/dir --install
15 # 2. rewrite the files section below.
16 %define _prefix /usr
17
18 # We can't let RPM do the dependencies automatic because it'll then pick up
19 # a correct but undesirable perl dependency, which rkhunter does not require
20 # in order to function properly.
21 AutoReqProv: no
22
23 Name: %{name}
24 Summary: %{name} scans for rootkits, backdoors and local exploits
25 Version: %{ver}
26 Release: %{rel}%{dist}
27 Epoch: %{epoch}
28 License: GPL
29 Group: Applications/System
30 Source0: %{name}-%{version}.tar.gz
31 Patch0: rkhunter-installer.patch
32 Patch1: rkhunter-nolib.patch
33 BuildArch: noarch
34 Requires: filesystem, bash, grep, findutils, net-tools, coreutils, e2fsprogs, modutils, procps, binutils, wget, perl
35 Provides: %{name}
36 URL: http://rkhunter.sourceforge.net/
37 BuildRoot: %{_tmppath}/%{name}-%{version}
38
39 %description
40 Rootkit Hunter is a scanning tool to ensure you are about 99.9%%
41 clean of nasty tools. It scans for rootkits, backdoors and local
42 exploits by running tests like:
43 - File hash check
44 - Look for default files used by rootkits
45 - Wrong file permissions for binaries
46 - Look for suspected strings in LKM and KLD modules
47 - Look for hidden files
48 - Optional scan within plaintext and binary files
49 - Software version checks
50 - Application tests
51
52 Rootkit Hunter is released as a GPL licensed project and free for everyone to use.
53
54
55 %prep
56 %setup -q
57 %patch0 -p1
58 %patch1 -p1
59
60 %build
61
62 %install
63 sh ./installer.sh --layout RPM --install
64
65 sed -i 's_#ALLOWPROCLISTEN=/sbin/dhclient_ALLOWPROCLISTEN=/sbin/dhclient_' ${RPM_BUILD_ROOT}%{_sysconfdir}/%{name}.conf
66 sed -i 's_#ALLOWPROCLISTEN=/usr/sbin/pppoe_ALLOWPROCLISTEN=/sbin/pppoe_' ${RPM_BUILD_ROOT}%{_sysconfdir}/%{name}.conf
67 sed -i 's_#ALLOWHIDDENFILE=/usr/share/man/man1/..1.gz_ALLOWHIDDENFILE=/usr/share/man/man1/..1.gz_' ${RPM_BUILD_ROOT}%{_sysconfdir}/%{name}.conf
68 sed -i '/#ALLOWPROCLISTEN=\/usr\/bin\/dhcpcd/iALLOWPROCLISTEN=\/usr\/sbin\/dhcpd' ${RPM_BUILD_ROOT}%{_sysconfdir}/%{name}.conf
69 sed -i '/#ALLOWPROCDELFILE=\/usr\/sbin\/mysqld/aALLOWPROCDELFILE=\/usr\/sbin\/httpd' ${RPM_BUILD_ROOT}%{_sysconfdir}/%{name}.conf
70 sed -i '/ALLOWPROCDELFILE=\/usr\/sbin\/httpd/aALLOWPROCDELFILE=\/usr\/sbin\/asterisk' ${RPM_BUILD_ROOT}%{_sysconfdir}/%{name}.conf
71
72 # Make a cron.daily file to mail us the reports
73 %{__mkdir} -p "${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.daily"
74 %{__cat} > "${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.daily/01-rkhunter" <<EOF
75 #!/bin/sh
76 %{_bindir}/rkhunter --cronjob --update --disable apps,suspscan,system_commands --rwo
77 exit 0
78 EOF
79 %{__chmod} a+rwx,g-w,o-rwx ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily/01-rkhunter
80
81
82 %post
83 # Only do this on an initial install
84 if [ $1 -eq 1 ]; then
85 %{__cp} -p /etc/passwd /var/rkhunter/tmp >/dev/null 2>&1 || :
86 %{__cp} -p /etc/group /var/rkhunter/tmp >/dev/null 2>&1 || :
87 fi
88
89
90 %preun
91 # Only do this when removing the RPM
92 if [ $1 -eq 0 ]; then
93 %{__rm} -f /var/log/rkhunter.log /var/log/rkhunter.log.old >/dev/null 2>&1
94 %{__rm} -rf /var/rkhunter/* >/dev/null 2>&1
95 fi
96
97
98 %clean
99 if [ "$RPM_BUILD_ROOT" = "/" ]; then
100 echo Invalid Build root \'"$RPM_BUILD_ROOT"\'
101 exit 1
102 else
103 rm -rf $RPM_BUILD_ROOT
104 fi
105
106
107 %define docdir %{_prefix}/share/doc/%{name}-%{version}
108 %files
109 %defattr(-,root,root)
110 %attr(640,root,root) %config(noreplace) %{_sysconfdir}/%{name}.conf
111 %attr(750,root,root) %{_prefix}/bin/%{name}
112 %attr(750,root,root) %dir %{_libdir}/%{name}
113 %attr(750,root,root) %dir %{_libdir}/%{name}/scripts
114 %attr(750,root,root) %{_libdir}/%{name}/scripts/*.pl
115 %attr(750,root,root) %{_libdir}/%{name}/scripts/*.sh
116 %attr(644,root,root) %doc %{_prefix}/share/man/man8/%{name}.8.gz
117 %attr(755,root,root) %dir %{docdir}
118 %attr(644,root,root) %doc %{docdir}/*
119 %attr(750,root,root) %dir %{_var}/%{name}
120 %attr(750,root,root) %dir %{_var}/%{name}/db
121 %attr(640,root,root) %{_var}/%{name}/db/*.dat
122 %attr(750,root,root) %dir %{_var}/%{name}/db/i18n
123 %attr(640,root,root) %{_var}/%{name}/db/i18n/*
124 %attr(750,root,root) %dir %{_var}/%{name}/tmp
125 %{_sysconfdir}/cron.daily/01-rkhunter
126
127
128 %changelog
129 * Wed Jan 30 2008 Shad L. Lords <slords@mail.com> 1.3.0-6
130 - Fix asterisk to allow deleted files. [SME: 3795]
131
132 * Tue Jan 29 2008 Shad L. Lords <slords@mail.com> 1.3.0-5
133 - Correct pppoe binary location.
134 - Add asterisk binary to allow deleted files. [SME: 3795]
135
136 * Mon Jan 7 2008 Shad L. Lords <slords@mail.com> 1.3.0-4
137 - Disable scan for suspicious files until fixed [SME: 3713]
138
139 * Mon Dec 17 2007 Shad L. Lords <slords@mail.com> 1.3.0-3
140 - Change /var/lib to /var to be consistent with previous versions
141
142 * Mon Dec 17 2007 Shad L. Lords <slords@mail.com> 1.3.0-2
143 - Add a few more services for sme tests
144
145 * Mon Dec 17 2007 Shad L. Lords <slords@mail.com> 1.3.0-1
146 - Fix installer to not install in local
147 - Set parameters for sme specific tests
148
149 * Sun Feb 11 2007 unSpawn - pre-1.3.0
150 - Sync spec with fixes, installer and CVS
151
152 * Sun Nov 12 2006 unSpawn - 1.2.9
153 - Re-spec, new installer
154
155 * Fri Sep 29 2006 unSpawn - 1.2.9
156 - Updated for release 1.2.9
157
158 * Tue Aug 10 2004 Michael Boelen - 1.1.5
159 - Added update script
160 - Extended description
161
162 * Sun Aug 08 2004 Greg Houlette - 1.1.5
163 - Changed the install procedure eliminating the specification of
164 destination filenames (only needed if you are renaming during install)
165 - Changed the permissions for documentation files (root only overkill)
166 - Added the installation of the rkhunter Man Page
167 - Added the installation of the programs_{bad, good}.dat database files
168 - Added the installation of the LICENSE documentation file
169 - Added the chmod for root only to the /var/rkhunter/db directory
170
171 * Sun May 23 2004 Craig Orsinger (cjo) <cjorsinger@earthlink.net>
172 - version 1.1.0-1.cjo
173 - changed installation in accordance with new rootkit installation
174 procedure
175 - changed installation root to conform to LSB. Use standard macros.
176 - added recursive remove of old build root as prep for install phase
177
178 * Wed Apr 28 2004 Doncho N. Gunchev - 1.0.9-0.mr700
179 - dropped Requires: perl - rkhunter works without it
180 - dropped the bash alignpatch (check the source or contact me)
181 - various file mode fixes (.../tmp/, *.db)
182 - optimized the %%files section - any new files in the
183 current dirs will be fine - just %%{__install} them.
184
185 * Mon Apr 26 2004 Michael Boelen - 1.0.8-0
186 - Fixed missing md5blacklist.dat
187
188 * Mon Apr 19 2004 Doncho N. Gunchev - 1.0.6-1.mr700
189 - added missing /usr/local/rkhunter/db/md5blacklist.dat
190 - patched to align results in --cronjob, I think rpm based
191 distros have symlink /bin/sh -> /bin/bash
192 - added --with/--without alignpatch for conditional builds
193 (in case previous patch breaks something)
194
195 * Sat Apr 03 2004 Michael Boelen / Joe Klemmer - 1.0.6-0
196 - Update to 1.0.6
197
198 * Mon Mar 29 2004 Doncho N. Gunchev - 1.0.0-0
199 - initial .spec file
200
201

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed