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

Diff of /rpms/rkhunter/sme8/rkhunter.spec

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

Revision 1.1 by slords, Tue Jun 12 20:49:39 2007 UTC Revision 1.15 by snetram, Thu May 14 17:10:05 2009 UTC
# Line 1  Line 1 
1  # We can't let RPM do the dependencies automatic because it'll then pick up  # $Id: rkhunter.spec,v 1.14 2009/04/07 07:30:35 snetram Exp $
2  # a correct but undesirable perl dependency, which rkhunter does not require  
3  # in order to function properly.  Name:           rkhunter
4  AutoReqProv: no  Version:        1.3.4
5    Release:        8%{?dist}
6  Summary:        Rootkit scans for rootkits, backdoors and local exploits.  Summary:        A host-based tool to scan for rootkits, backdoors and local exploits
7  Name:           rkhunter  
 Version:        1.2.9  
 Release:        3%{?dist}  
 Epoch:          0  
 License:        GPL  
8  Group:          Applications/System  Group:          Applications/System
9  URL:            http://rkhunter.sourceforge.net/  License:        GPLv2+
10  Source0:        %{name}-%{version}.tar.gz  URL:            http://rkhunter.sourceforge.net/
11  Patch0:         rkhunter-sme7.patch  Source0:        http://downloads.sourceforge.net/rkhunter/rkhunter-%{version}.tar.gz
12  BuildArch:      noarch  Source1:        http://downloads.sourceforge.net/rkhunter/rkhunter-%{version}.tar.gz.sha1.txt
13  Requires:       /bin/sh, /bin/ps, /bin/ls, /bin/cat, /bin/egrep, /usr/bin/strings  Source2:        01-rkhunter
14    Source3:        rkhunter.sysconfig
15    Patch0:         rkhunter-1.3.4-smeconfig.patch
16    BuildArch:      noarch
17  BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)  BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
18    
19  %description  Requires:       coreutils, binutils, modutils, findutils, grep, mktemp
20  Rootkit scanner is scanning tool to ensure you for about 99.9%% you're  Requires:       e2fsprogs, procps, lsof, prelink, iproute, net-tools, wget
21  clean of nasty tools. This tool scans for rootkits, backdoors and local  Requires:       perl, perl(strict), perl(IO::Socket), mailx, logrotate
 exploits by running tests like:  
         - MD5 hash compare  
         - Look for default files used by rootkits  
         - Wrong file permissions for binaries  
         - Look for suspected strings in LKM and KLD modules  
         - Look for hidden files  
         - Optional scan within plaintext and binary files  
         - Software version checks  
         - Application tests  
   
 Rootkit Hunter is released as a GPL licensed project and free for everyone to use.  
22    
23    %description
24    Rootkit Hunter (RKH) is an easy-to-use tool which checks
25    computers running UNIX (clones) for the presence of rootkits
26    and other unwanted tools.
27    
28  %prep  %prep
 %setup  
 %patch -p1  
   
 %build  
 #%%configure ...  
 # We have nothing to configure... yet...  
   
 %install  
 # Well... This could be a bit smaller if the install  
 # script was able to handle DSTDIR for example...  
29    
30  # (cjo) remove old version of build root, if it exists  %setup -q
 %{__rm} -rf ${RPM_BUILD_ROOT}  
31    
32  %{__mkdir} -p ${RPM_BUILD_ROOT}%{_bindir}  %patch0 -p1
 %{__mkdir} -p ${RPM_BUILD_ROOT}%{_sysconfdir}  
 %{__mkdir} -p ${RPM_BUILD_ROOT}%{_libdir}  
 %{__mkdir} -p ${RPM_BUILD_ROOT}%{_libdir}/rkhunter/scripts  
 %{__mkdir} -p ${RPM_BUILD_ROOT}%{_docdir}/rkhunter-%{version}  
 %{__mkdir} -p ${RPM_BUILD_ROOT}%{_mandir}/man8  
 %{__mkdir} -p ${RPM_BUILD_ROOT}%{_var}/rkhunter/{db,tmp}  
 %{__chmod} ug+rwx,o-rwx ${RPM_BUILD_ROOT}%{_var}/rkhunter/tmp  
   
 %{__install} -m750 -p files/rkhunter            ${RPM_BUILD_ROOT}%{_bindir}/  
   
 %{__install} -m640 -p files/backdoorports.dat   ${RPM_BUILD_ROOT}%{_var}/rkhunter/db/  
 %{__install} -m640 -p files/defaulthashes.dat   ${RPM_BUILD_ROOT}%{_var}/rkhunter/db/  
 %{__install} -m640 -p files/mirrors.dat         ${RPM_BUILD_ROOT}%{_var}/rkhunter/db/  
 %{__install} -m640 -p files/os.dat              ${RPM_BUILD_ROOT}%{_var}/rkhunter/db/  
 %{__install} -m640 -p files/md5blacklist.dat    ${RPM_BUILD_ROOT}%{_var}/rkhunter/db/  
 %{__install} -m640 -p files/programs_bad.dat    ${RPM_BUILD_ROOT}%{_var}/rkhunter/db/  
 %{__install} -m640 -p files/programs_good.dat   ${RPM_BUILD_ROOT}%{_var}/rkhunter/db/  
   
 %{__install} -m644 -p files/CHANGELOG           ${RPM_BUILD_ROOT}%{_docdir}/rkhunter-%{version}/  
 %{__install} -m644 -p files/LICENSE             ${RPM_BUILD_ROOT}%{_docdir}/rkhunter-%{version}/  
 %{__install} -m644 -p files/README              ${RPM_BUILD_ROOT}%{_docdir}/rkhunter-%{version}/  
 %{__install} -m644 -p files/WISHLIST            ${RPM_BUILD_ROOT}%{_docdir}/rkhunter-%{version}/  
 %{__install} -m644 -p files/development/*.8     ${RPM_BUILD_ROOT}%{_mandir}/man8/  
   
 %{__install} -m750 -p files/check_modules.pl    ${RPM_BUILD_ROOT}%{_libdir}/rkhunter/scripts/  
 %{__install} -m750 -p files/check_port.pl       ${RPM_BUILD_ROOT}%{_libdir}/rkhunter/scripts/  
 %{__install} -m750 -p files/filehashmd5.pl      ${RPM_BUILD_ROOT}%{_libdir}/rkhunter/scripts/  
 %{__install} -m750 -p files/filehashsha1.pl     ${RPM_BUILD_ROOT}%{_libdir}/rkhunter/scripts/  
 %{__install} -m750 -p files/showfiles.pl        ${RPM_BUILD_ROOT}%{_libdir}/rkhunter/scripts/  
 %{__install} -m750 -p files/check_update.sh     ${RPM_BUILD_ROOT}%{_libdir}/rkhunter/scripts/  
   
 # (cjo) Put installation root in configuration file, then copy the rest  
 #       of the file from the original.  
 cat >> ${RPM_BUILD_ROOT}%{_sysconfdir}/rkhunter.conf << EOF  
 ## Next three lines installed automatically by RPM. Do not change  
 ## unless you know what you're doing...  
 INSTALLDIR=%{_prefix}  
 DBDIR=%{_var}/rkhunter/db  
 TMPDIR=%{_var}/rkhunter/tmp  
33    
34    %{__cat} <<'EOF' >%{name}.logrotate
35    %{_localstatedir}/log/%{name}/%{name}.log {
36        weekly
37        notifempty
38        create 640 root root
39    }
40  EOF  EOF
41    
42  cat files/rkhunter.conf >> ${RPM_BUILD_ROOT}%{_sysconfdir}/rkhunter.conf  %build
43  %{__chmod} 640 ${RPM_BUILD_ROOT}%{_sysconfdir}/rkhunter.conf  # Nothing to be built
44    
45  # Only root should use rkhunter (at least for now)  %install
46  %{__chmod} o-rwx -R ${RPM_BUILD_ROOT}%{_libdir}/rkhunter  %{__rm} -rf $RPM_BUILD_ROOT
47  %{__chmod} o-rwx -R ${RPM_BUILD_ROOT}%{_var}/rkhunter/db  
48    %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_bindir}
49  # make a cron.daily file to mail us the reports  %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_sysconfdir}/{cron.daily,sysconfig,logrotate.d}
50  %{__mkdir} -p "${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.daily"  %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts
51  %{__cat} > "${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.daily/01-rkhunter" <<EOF  %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}
52  #!/bin/sh  %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_mandir}/man8
53  %{_bindir}/rkhunter --cronjob --skip-application-check --report-warnings-only --createlogfile /var/log/rkhunter.log  %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db
54  EOF  %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/run/%{name}
55  %{__chmod} a+rwx,g-w,o-rwx ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily/01-rkhunter  %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/log/%{name}
56    %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/i18n
57    
58    %{__install} -m755 -p files/%{name}             ${RPM_BUILD_ROOT}%{_bindir}/
59    
60    %{__install} -m644 -p files/backdoorports.dat   ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
61    %{__install} -m644 -p files/defaulthashes.dat   ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
62    %{__install} -m644 -p files/md5blacklist.dat    ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
63    %{__install} -m644 -p files/mirrors.dat         ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
64    %{__install} -m644 -p files/os.dat              ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
65    %{__install} -m644 -p files/programs_bad.dat    ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
66    %{__install} -m644 -p files/programs_good.dat   ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
67    %{__install} -m644 -p files/i18n/cn             ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/i18n/
68    %{__install} -m644 -p files/i18n/en             ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/i18n/
69    
70    %{__install} -m644 -p files/CHANGELOG           ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
71    %{__install} -m644 -p files/LICENSE             ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
72    %{__install} -m644 -p files/README              ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
73    %{__install} -m644 -p files/WISHLIST            ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
74    %{__install} -m755 -p files/check_modules.pl    ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
75    %{__install} -m755 -p files/check_port.pl       ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
76    %{__install} -m755 -p files/check_update.sh     ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
77    %{__install} -m644 -p files/*.8                 ${RPM_BUILD_ROOT}%{_mandir}/man8/
78    # Don't ship these unless we want to Require the perl modules
79    #%{__install} -m750 -p files/filehashmd5.pl      ${RPM_BUILD_ROOT}%{_prefix}/lib/%{name}/scripts/
80    #%{__install} -m750 -p files/filehashsha1.pl     ${RPM_BUILD_ROOT}%{_prefix}/lib/%{name}/scripts/
81    %{__install} -m755 -p files/showfiles.pl        ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
82    %{__install} -m755 -p %{SOURCE2}                ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily/%{name}
83    %{__install} -m644 -p %{name}.logrotate         ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d/%{name}
84    %{__install} -m640 -p files/%{name}.conf        ${RPM_BUILD_ROOT}%{_sysconfdir}/
85    %{__install} -m640 -p %{SOURCE3}                ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/%{name}
86    
87  %clean  %clean
88  %{__rm} -rf "$RPM_BUILD_ROOT"  %{__rm} -rf $RPM_BUILD_ROOT
89    
90    %post
91    # Only do this on an initial install
92    if [ $1 -eq 1 ]; then
93        %{__cp} -p /etc/passwd /var/lib/rkhunter/ >/dev/null 2>&1 || :
94        %{__cp} -p /etc/group /var/lib/rkhunter/ >/dev/null 2>&1 || :
95    fi
96    
97  %files  %files
98  %defattr(-,root,root,-)  %defattr(-,root,root,-)
99  %{_bindir}/rkhunter  %doc %{_docdir}/%{name}-%{version}/*
100  %dir %{_libdir}/rkhunter  %{_bindir}/%{name}
101  %doc %{_docdir}/rkhunter-%{version}  %dir %{_datadir}/%{name}
102    %{_datadir}/%{name}/scripts
103    %{_sysconfdir}/cron.daily/%{name}
104    %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
105    %dir %{_var}/lib/%{name}
106    %{_var}/lib/%{name}/db
107    %{_var}/lib/%{name}/db/i18n
108    %dir %{_var}/run/%{name}
109    %dir %{_var}/log/%{name}
110    %config(noreplace) %{_sysconfdir}/%{name}.conf
111    %config(noreplace) %{_sysconfdir}/sysconfig/%{name}
112    %dir %{_docdir}/%{name}-%{version}
113  %{_mandir}/man8/*  %{_mandir}/man8/*
 %{_libdir}/rkhunter/scripts  
 %dir %{_var}/rkhunter/tmp  
 %{_var}/rkhunter/db  
 %config(noreplace) %verify(not mtime) %{_sysconfdir}/rkhunter.conf  
 %{_sysconfdir}/cron.daily/01-rkhunter  
   
114    
115  %changelog  %changelog
116  * Sun Apr 29 2007 Shad L. Lords <slords@mail.com>  * Thu May 14 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 1.3.4-8
117  - Clean up spec so package can be built by koji/plague  - Bump version number in order to move package to SME Contribs [SME: 5172]
   
 * Wed Mar 07 2007 Shad L. Lords <slords@mail.com> 1.2.9-3  
 - Add sigs for 7.1.2 and 7.1.3  
118    
119  * Sun Jan 28 2007 Shad L. Lords <slords@mail.com> 1.2.9-2  * Tue Apr 7 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 1.3.4-7
120  - Run updates as part of build process  - Remove quotes in DISABLE_TESTS setting [SME: 5149]
121    
122  * Sun Jan 28 2007 Shad L. Lords <slords@mail.com> 1.2.9-1  * Thu Apr 2 2009 Shad L. Lords <slords@mail.com> 1.3.4-6
123  - Update to latest 1.2.9  - Update to epel version of rkhunter
124    - Set parameters for sme specific tests
125  * Tue Dec 12 2006 Shad L. Lords <slords@mail.com> 1.2.8-4  
126  - Add strings as a requirement. [SME: 2267]  * Sun Mar 08 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-5
127    - Fix typo in patch file
128  * Tue Dec 12 2006 Shad L. Lords <slords@mail.com> 1.2.8-3  
129  - Added 7.1  * Wed Mar 04 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-4
130    - Rework spec file
131  * Thu Dec 07 2006 Shad L. Lords <slords@mail.com> 1.2.8-2  - Add check for the new hmac ssh files
132  - Update to new release naming.  No functional changes.  
133  - Make Packager generic  * Thu Feb 26 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-3
134    - Update cron job to include hostname (thanks  Manuel Wolfshant)
135  * Sun Nov 12 2006 Shad L. Lords <slords@lordsfam.net> 1.2.8-1sme01  
136  - Updated to latest 1.2.8  * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.4-2
137    - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
138  * Wed Feb 22 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.7-1sme07  
139  - Added 7.0pre[45] and 7.0prc3 [SME: 860  * Fri Jan 02 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-1
140    - Update to 1.3.4
141  * Mon Feb 20 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.7-1sme06  - Use libdir as tmp dir - bug #456340
142  - Added 7.0pre3 [SME: 845]  
143    * Sat Dec 13 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-6
144  * Sat Feb 4 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.7-1sme05  - Fix cron job sending as attachment - bug #472679
145  - Added 7.0pre2 [SME: 653]  - Fix cron job trying to send with colors - bug #475916
146    
147  * Mon Jan 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.7-1sme04  * Wed Sep 03 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-5
148  - Remove explicit call to /bin/mail from rkhunter daily cron job. If  - Patch debug tmp file issue - bug #460628
149    there's no output, we don't want any mail either [SME: 421]  
150    * Mon Jun 16 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-4
151  * Mon Jan 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.7-1sme03  - Fix cron script to only mail on warn/error - bug #450703
152  - Fix up format of os.dat entries. rkhunter knows about  - Fix conditional to account for fc10 rsyslog
153    /etc/e-smith-release [SME: 384]  
154    * Mon Apr 28 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-3
155  * Mon Jan 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.7-1sme02  - Change cron to run after prelink - bug #438622
156  - And add support for 7.0pre1 [SME: 384]  
157    * Wed Mar 26 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-2
158  * Mon Jan 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.7-1sme01  - Move things to more standard locations for selinux - bug #438184
159  - Add support for 7.0beta9, rc[12] and final [SME: 384]  - Add exception for pulseaudio file - bug #438622
160    
161  * Wed Nov 09 2005 Charlie Brady <charlieb@e-smith.com> 1.2.7-1es2  * Thu Feb 28 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-1
162  - Add support for CentOS 4.{1,2,3}  - Update to 1.3.2
163    - Fix cron script
164  * Fri Jul 15 2005 Charlie Brady - 1.2.7-1es  
165  - Upgrade to 1.2.7  * Thu Feb 28 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.0-2
166    - Use /etc/redhat-release for EPEL and /etc/fedora release for Fedora.
167  * Sun Jun 05 2005 Charlie Brady - 1.2.6-2es  - Add conditionals to support EPEL
168  - Make cron job quieter  - Fix man page warning.
169  - Add SME6.1 and SME7 as recognised OSes.  
170    * Sun Feb 03 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.0-1
171  * Tue May 10 2005 Charlie Brady - 1.2.6  - Revive package, clean up spec
172  - Update to 1.2.6  - Update to 1.3.0
173    
174    * Sat Mar 18 2006 Greg Houlette <tamaster@pobox.com> - 1.2.8-3
175    - Made an RPM transparent change to move the sha1 canary check
176      file out of CVS and into the external lookaside cache (whose
177      filename changes with every new package release anyway...)
178    
179    * Fri Mar 17 2006 Greg Houlette <tamaster@pobox.com> - 1.2.8-2
180    - Fixed architectural dependency during package creation eliminating
181      use of _libdir configure macro (x86_64 /usr/lib64 mis-targeting)
182    
183    * Tue Mar 7 2006 Greg Houlette <tamaster@pobox.com> - 1.2.8-1
184    - New package version release
185    - reworked the .spec file to support optional dist tag
186    - Updated the application check default patchfile (chunk failure)
187    - Changed to SHA1 for optional message digest (canary check)
188    - Added a couple of suggested skip entries to rkhunter.conf
189    
190    * Mon Jun 11 2005 Greg Houlette <tamaster@pobox.com> - 1.2.7-1
191    - Added signature auto-updating to CRON scan (new script)
192    - Removed BOOTSCAN pending rewrite to full SysV Init scan in background
193    - Added the --append-log command line option
194    - Added Date Stamping to output
195    - Fixed bug in /etc/group missing report
196    - New package version release
197    
198    * Sun Jan 2 2005 Greg Houlette <tamaster@tekarmory.com> - 0:1.1.9-1
199    - New package version release
200    - Added the --run-application-check command line option
201      to listing in command help
202    - Replaced 'Here' Doc editing of rkhunter.conf file
203      with in-place Perl edit
204    - tweaked rpmbuild -bb Autoclean
205    
206    * Fri Oct 15 2004 Greg Houlette - 0:1.1.8-0.fdr.1 (revisited)
207    - Removed redundant buildrequires /bin/sh, coreutils and perl
208    - Revise postun scriptlet
209    - Added /usr/share/doc/rkhunter-1.1.8/ to files list
210    
211    * Mon Oct 11 2004 Greg Houlette - 0:1.1.8-0.fdr.1
212    - Changed Release Tag to 0.fdr.1 (testing) for QA
213    - Removed wget from dependencies
214    - Hid (temporarily) the --skip-application-check command
215      line option from being listed in help
216    - Fixed the spec files list, again!
217    
218    * Fri Oct 8 2004 Greg Houlette - 0:1.1.8-0.fdr.0.2.beta2
219    - Unified and disabled the md5 canary check in prep
220      (check is now optional) removing the sha1 cross-check
221    - Fixed the spec files list, adding the /var/rkhunter
222      directory and the /usr/bin/rkhunter executable
223    - Fixed missing dependencies (rkh uses runtime checks)
224    - Disabled "auto-clean" for rpmbuild -bb
225    - Changed Application version scan default to
226      disabled awaiting backport fix in upstream sources
227    - Fixed shared_man_search.patch, configuration files
228      verify and added postun(install) cleanup
229    
230    * Fri Oct 1 2004 Greg Houlette - 0:1.1.8-0.fdr.0.1.beta1
231    - More cosmetic patchwork
232    - Changed Release Tag to beta1 (pre-release) for QA submit
233    
234    * Tue Sep 28 2004 Greg Houlette - 0:1.1.8-0.fdr.1
235    - Removed hidden_search.patch (1.1.7) after it was
236      merged into upstream source by Michael Boelen
237    - Removed .spec file from md5 and sha1 file checks
238      (it must be modifiable by Fedora QA release build)
239    - Added BOOTSCAN description file to documentation
240    - Restructured dynamic file creation ('Here' Docs)
241      moving them to the "prep" stage so that *_ALL_*
242      files are available prior to the "build" stage
243      (for inspection purposes)
244    - Added a /etc/sysconfig/rkhunter parameters file
245    
246    * Sun Aug 29 2004 Greg Houlette - 0:1.1.7-0.fdr.1
247    - Cosmetic patchwork
248    
249    * Sat Aug 21 2004 Greg Houlette - 0:1.1.6-0.fdr.1
250    - Moderate reworking of .spec file for packaging standards
251    - Added md5 and sha1 file checks to prep procedure for source .rpm
252    - Included an optional rc.local replacement for scan on boot (with full logging)
253    
254  * Tue Aug 10 2004 Michael Boelen - 1.1.5  * Tue Aug 10 2004 Michael Boelen - 1.1.5
255  - Added update script  - Added update script
# Line 226  EOF Line 293  EOF
293    
294  * Mon Mar 29 2004 Doncho N. Gunchev - 1.0.0-0  * Mon Mar 29 2004 Doncho N. Gunchev - 1.0.0-0
295  - initial .spec file  - initial .spec file
   


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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