rpms/rkhunter/devel 01-rkhunter, NONE, 1.1 Makefile, 1.3, 1.4 rkhunter-1.3.0.sha1, NONE, 1.1 rkhunter.spec, 1.10, 1.11 rkhunter.sysconfig, NONE, 1.1 sources, 1.7, 1.8 dead.package, 1.1, NONE

Kevin Fenzi (kevin) fedora-extras-commits at redhat.com
Fri Feb 15 04:30:57 UTC 2008


Author: kevin

Update of /cvs/extras/rpms/rkhunter/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15747/devel

Added Files:
	01-rkhunter Makefile rkhunter-1.3.0.sha1 rkhunter.spec 
	rkhunter.sysconfig sources 
Removed Files:
	dead.package 
Log Message:
Initial import of new rkhunter package



--- NEW FILE 01-rkhunter ---
#!/bin/sh
# 01-rkhunter  A shell script to update and run rkhunter via CRON

XITVAL=0

# Get a secure tempfile
TMPFILE1=`/bin/mktemp -p @TMPDIR@ rkhcronlog.XXXXXXXXXX` || exit 1

if [ ! -e @STDIR@/lock/subsys/rkhunter ]; then

  # Try to keep the SysInit boot scan from colliding with us (highly unlikely)
  /bin/touch @STDIR@/lock/subsys/rkhunter

  # Source system configuration parameters.
  if [ -e @SCDIR@/rkhunter ] ; then
    . @SCDIR@/rkhunter
  else
    MAILTO=root at localhost
  fi

  # If a diagnostic mode scan was requested, setup the parameters
  if [ "$DIAG_SCAN" == "yes" ]; then
    RKHUNTER_FLAGS="
    --checkall
    --run-application-check
    --skip-keypress
    --nocolors
    --quiet
    --append-log $TMPFILE1
  "
  else
    RKHUNTER_FLAGS="
    --cronjob
  "
  fi

  # Set a few critical parameters
  RKHUNTER=@RKEXE@
  LOGFILE=@LGDIR@/rkhunter.log

  # Run RootKit Hunter if available
  if [ -x $RKHUNTER ]; then
    /bin/echo -e "\n--------------------- Start Rootkit Hunter Update ---------------------" \
      > $TMPFILE1
    /bin/nice -n 10 $RKHUNTER --update 2>&1 >> $TMPFILE1
    /bin/echo -e "\n---------------------- Start Rootkit Hunter Scan ----------------------" \
      >> $TMPFILE1
    /bin/nice -n 10 $RKHUNTER $RKHUNTER_FLAGS 2>&1 >> $TMPFILE1
    XITVAL=$?
    /bin/echo -e "\n----------------------- End Rootkit Hunter Scan -----------------------" \
      >> $TMPFILE1
    /bin/cat $TMPFILE1 | /bin/mail -s 'rkhunter Daily Run' $MAILTO
    /bin/cat $TMPFILE1 >> $LOGFILE
  fi

  # Delete the gating lockfile
  /bin/rm -f @STDIR@/lock/subsys/rkhunter
fi

# Delete the secure tempfile
/bin/rm -f $TMPFILE1

exit $XITVAL


Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	15 Feb 2008 04:30:23 -0000	1.4
@@ -0,0 +1,21 @@
+# Makefile for source rpm: rkhunter
+# $Id$
+NAME := rkhunter
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)


--- NEW FILE rkhunter-1.3.0.sha1 ---
225cc53f9691ad39f10bd2aaac478355ce4dc411  rkhunter-1.3.0/files/contrib/README.txt
285155f63cfa7a6a73ec0352dccaaa2221989b94  rkhunter-1.3.0/files/contrib/rkhunter_remote_howto.txt
beed9c4b594c5be28ca4837fdcd2ac367e2946ee  rkhunter-1.3.0/files/contrib/run_rkhunter.sh
e715f42bc634c5497eb83014acd8cbcbea5e4611  rkhunter-1.3.0/files/ACKNOWLEDGMENTS
b633fb9d5dd05f68749dbf1cc268e0822f6ee4ca  rkhunter-1.3.0/files/CHANGELOG
e7f8437125c35b69c79e1d93baa9eb205cc7f2ac  rkhunter-1.3.0/files/FAQ
345ab306455525cf5626caadda22b5dcbf732bc1  rkhunter-1.3.0/files/LICENSE
fc8f29a947e4345ab15d5d56280761865d61a239  rkhunter-1.3.0/files/README
73a42c94be2fb1fd3284d8dc60d22ff0fc8407f4  rkhunter-1.3.0/files/WISHLIST
9ddeec64999f4c0e6f9aa5992cd25c503311b764  rkhunter-1.3.0/files/backdoorports.dat
a0badd192cc4f33fbf38f446eae3c858ba81c88f  rkhunter-1.3.0/files/check_modules.pl
5c4319fe3f9acc552b7a9e973b7d081f7cb31642  rkhunter-1.3.0/files/check_port.pl
996a29dee608374e601ecf0253e445e16506c672  rkhunter-1.3.0/files/check_update.sh
59de768a09a4cd13599653df85ecc2362e416ab3  rkhunter-1.3.0/files/defaulthashes.dat
ebc05604eb51b10478d35ac3750699cefecd5ae3  rkhunter-1.3.0/files/filehashmd5.pl
1878119b6045eeab6a5afaebad7b523e86c3a935  rkhunter-1.3.0/files/filehashsha1.pl
82c8c3881d59d228de3ce74a4b7b68eac07940f1  rkhunter-1.3.0/files/md5blacklist.dat
a656a91b37a83a2325843f0ccedb5eb7866506ac  rkhunter-1.3.0/files/mirrors.dat
951b498f71fc4a126ca435f7bce96ed8b821efb6  rkhunter-1.3.0/files/os.dat
c82074175e72642dd74322ce29281f0f2fe2798c  rkhunter-1.3.0/files/programs_bad.dat
d5bff919ce44a345a193824ea16b0404008d7823  rkhunter-1.3.0/files/programs_good.dat
d824c9ca8b591d108bd7b194350166ac65e64212  rkhunter-1.3.0/files/readlink.sh
41fa7cdcd45fc96d730c1e54a0eb40d4d4c2c428  rkhunter-1.3.0/files/rkhunter
7098a383b12612e1cf7191963e039936fc788ba0  rkhunter-1.3.0/files/rkhunter.8
ad8112c0678b56d652857ec933bf6b60145045f7  rkhunter-1.3.0/files/rkhunter.conf
eb5d6ef0c5cd9dec13a98c66ab82e1ccae62121f  rkhunter-1.3.0/files/rkhunter.spec
43bca835d9c64ab2f8cf7f1a5a078bb1b7da9306  rkhunter-1.3.0/files/showfiles.pl
5dfa5246dc1c87b05f44f9f444466ce3d0d6edec  rkhunter-1.3.0/files/stat.pl
ec4d60774decbb354f7aafcc2b65b1f87e000c97  rkhunter-1.3.0/files/suspscan.dat
e158163bfe6cb414d839e91880af37611f8b5cc0  rkhunter-1.3.0/files/development/createfilehashes.pl
cb4903c649ad50b79230f5a5250da82c1d9ccb0f  rkhunter-1.3.0/files/development/createhashes.sh
6b2f032d6143ed3b6ba3eae19d7921e154e69e47  rkhunter-1.3.0/files/development/createhashesall.sh
d09ab61a3563122b8cd6415e3083dfe1ef285a2b  rkhunter-1.3.0/files/development/i18nchk
0c613880f3447af695ca9f9f93e158b34c2a10c3  rkhunter-1.3.0/files/development/osinformation.sh
614a5d3999055a8faeecc393c5695d628e5a7675  rkhunter-1.3.0/files/development/rpmhashes.sh
4f4dfb87e758236cadc5ac5af67bbb35f4f63eb1  rkhunter-1.3.0/files/development/rpmprelinkhashes.sh
7378fb7e91b1f7e789508e4e8d00e1e3a70ee6ff  rkhunter-1.3.0/files/development/search_dead_sysmlinks.sh
52ac2bcbe9524971cc535b20fb6d3442f53ea8b0  rkhunter-1.3.0/files/i18n/cn
a36507f61ba0932774bfaed58708edb8ded567dd  rkhunter-1.3.0/files/i18n/en
73e76916a3f65dde2317fff6c932e1d77760fdf7  rkhunter-1.3.0/files/testing/rkhunter.conf
361ada5406c7e57e62e840caf3d3bce5e8436fc1  rkhunter-1.3.0/files/testing/rootkitinfo.txt
56bf42d4fe669412b84eb307d5e314af4501dc9a  rkhunter-1.3.0/files/testing/stringscanner.sh
ff10891d252f3859abe63054eb64f0e9eae2d781  rkhunter-1.3.0/files/tools/README
90876286c511986474144a5a1fc21afa0f5f29c5  rkhunter-1.3.0/files/tools/update_client.sh
e3ba269e33d5d385230d0a4457d87cf6e3acece8  rkhunter-1.3.0/files/tools/update_server.sh
737e3663adbd1f36eab4b668a16462da3278c04d  rkhunter-1.3.0/installer.sh


Index: rkhunter.spec
===================================================================
RCS file: rkhunter.spec
diff -N rkhunter.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ rkhunter.spec	15 Feb 2008 04:30:23 -0000	1.11
@@ -0,0 +1,262 @@
+Name:           rkhunter
+Version:        1.3.0
+Release:        1%{?dist}
+Summary:        A host-based tool to scan for rootkits, backdoors and local exploits
+
+Group:          Applications/System
+License:        GPLv2+
+URL:            http://rkhunter.sourceforge.net/
+Source0:        http://downloads.sourceforge.net/rkhunter/rkhunter-1.3.0.tar.gz
+Source1:        http://downloads.sourceforge.net/rkhunter/rkhunter-1.3.0.sha1
+Source2:        01-rkhunter
+Source3:        rkhunter.sysconfig
+BuildArch:      noarch
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+Requires:       coreutils, binutils, modutils, findutils, grep, mktemp
+Requires:       e2fsprogs, procps, lsof, prelink, iproute, net-tools, wget
+Requires:       perl, perl(strict), perl(IO::Socket), mailx, logrotate
+
+%description
+Rootkit Hunter (RKH) is an easy-to-use tool which checks
+computers running UNIX (clones) for the presence of rootkits
+and other unwanted tools.
+
+%prep
+
+%setup -q
+
+%{__perl} -pi.0001 -e '
+	s|^#(MAIL-ON-WARNING=).+$|$1root\@localhost|;
+	s|^#(TMPDIR=).+$|$1%{_var}/%{name}/tmp|;
+	s|^#(DBDIR=).+$|$1%{_var}/%{name}/db|;
+	s|^#(SCRIPTDIR=).+$|$1%{_datadir}/%{name}/scripts|;
+	s|^#(PKGMGR=).+$|$1RPM|;
+	s|^#(OS_VERSION_FILE=).+$|$1/etc/fedora-release|;
+	s|^#(ALLOWHIDDENDIR=).+$|$1/dev/.udev|;
+	s|^#(ALLOWHIDDENDIR=).+$|$1/usr/share/man/man1/..1.gz|;
+	s|^(APPEND_LOG=).+$|$11|;
+	s|^(ALLOW_SSH_ROOT_USER=).+$|$1yes|;
+	s|^(DISABLE_TESTS=).+$|$1"additional_rkts suspscan hidden_procs deleted_files packet_cap_apps"|;
+    ' files/%{name}.conf
+
+# Add Fedora specific configs
+echo "INSTALLDIR=%{_prefix}" >> files/%{name}.conf
+echo "SCRIPTWHITELIST=/usr/bin/whatis" >> files/%name.conf
+echo "SCRIPTWHITELIST=/usr/bin/ldd" >> files/%name.conf
+echo "SCRIPTWHITELIST=/usr/bin/groups" >> files/%name.conf
+echo "SCRIPTWHITELIST=/usr/bin/GET" >> files/%name.conf
+echo "SCRIPTWHITELIST=/sbin/ifup" >> files/%name.conf
+echo "SCRIPTWHITELIST=/sbin/ifdown" >> files/%name.conf
+# in f8/f9
+echo "SYSLOG_CONFIG_FILE=/etc/rsyslog.conf" >> files/%name.conf
+
+%{__perl} -pi.orig -e '
+	s|\@TMPDIR\@|%{_var}/%{name}/tmp|g;
+	s|\@STDIR\@|%{_localstatedir}|g;
+	s|\@CFGDIR\@|%{_sysconfdir}|g;
+	s|\@SCDIR\@|%{_sysconfdir}/sysconfig|g;
+	s|\@ITDIR\@|%{_initrddir}|g;
+	s|\@RKEXE\@|%{_bindir}/%{name}|g;
+	s|\@RKHSH\@|%{_bindir}/%{name}-scan.sh|g;
+	s|\@LGDIR\@|%{_localstatedir}/log|g;
+    ' 01-%{name}
+
+%{__cat} <<'EOF' >%{name}.logrotate
+%{_localstatedir}/log/%{name}.log {
+    weekly
+    notifempty
+    create 640 root root
+}
+EOF
+
+%build
+# Nothing to be built
+
+%install
+%{__rm} -rf $RPM_BUILD_ROOT
+
+%{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_bindir}
+%{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_sysconfdir}/{cron.daily,sysconfig,logrotate.d}
+%{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts
+%{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}
+%{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_mandir}/man8
+%{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/%{name}/{db,tmp}
+%{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/%{name}/db/i18n
+
+%{__install} -m755 -p files/%{name}             ${RPM_BUILD_ROOT}%{_bindir}/
+
+%{__install} -m644 -p files/backdoorports.dat   ${RPM_BUILD_ROOT}%{_var}/%{name}/db/
+%{__install} -m644 -p files/defaulthashes.dat   ${RPM_BUILD_ROOT}%{_var}/%{name}/db/
+%{__install} -m644 -p files/md5blacklist.dat    ${RPM_BUILD_ROOT}%{_var}/%{name}/db/
+%{__install} -m644 -p files/mirrors.dat         ${RPM_BUILD_ROOT}%{_var}/%{name}/db/
+%{__install} -m644 -p files/os.dat              ${RPM_BUILD_ROOT}%{_var}/%{name}/db/
+%{__install} -m644 -p files/programs_bad.dat    ${RPM_BUILD_ROOT}%{_var}/%{name}/db/
+%{__install} -m644 -p files/programs_good.dat   ${RPM_BUILD_ROOT}%{_var}/%{name}/db/
+%{__install} -m644 -p files/i18n/cn             ${RPM_BUILD_ROOT}%{_var}/%{name}/db/i18n/
+%{__install} -m644 -p files/i18n/en             ${RPM_BUILD_ROOT}%{_var}/%{name}/db/i18n/
+
+%{__install} -m644 -p files/CHANGELOG           ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
+%{__install} -m644 -p files/LICENSE             ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
+%{__install} -m644 -p files/README              ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
+%{__install} -m644 -p files/WISHLIST            ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
+%{__install} -m755 -p files/check_modules.pl    ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
+%{__install} -m755 -p files/check_port.pl       ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
+%{__install} -m755 -p files/check_update.sh     ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
+%{__install} -m644 -p files/*.8                 ${RPM_BUILD_ROOT}%{_mandir}/man8/
+# Don't ship these unless we want to Require the perl modules
+#%{__install} -m750 -p files/filehashmd5.pl      ${RPM_BUILD_ROOT}%{_prefix}/lib/%{name}/scripts/
+#%{__install} -m750 -p files/filehashsha1.pl     ${RPM_BUILD_ROOT}%{_prefix}/lib/%{name}/scripts/
+%{__install} -m755 -p files/showfiles.pl        ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
+%{__install} -m755 -p %{SOURCE2}                ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily/
+%{__install} -m644 -p %{name}.logrotate         ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d/%{name}
+%{__install} -m640 -p files/%{name}.conf        ${RPM_BUILD_ROOT}%{_sysconfdir}/
+%{__install} -m640 -p %{SOURCE3}                ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/%{name}
+
+%clean
+%{__rm} -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc %{_docdir}/%{name}-%{version}/*
+%{_bindir}/%{name}
+%dir %{_datadir}/%{name}
+%{_datadir}/%{name}/scripts
+%{_sysconfdir}/cron.daily/01-%{name}
+%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
+%dir %{_var}/%{name}
+%{_var}/%{name}/db
+%{_var}/%{name}/db/i18n
+%dir %{_var}/%{name}/tmp
+%config(noreplace) %{_sysconfdir}/%{name}.conf
+%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
+%dir %{_docdir}/%{name}-%{version}
+%{_mandir}/man8/*
+
+%changelog
+* Sun Feb 03 2008 Kevin Fenzi <kevin at tummy.com> - 1.3.0-1
+- Revive package, clean up spec
+- Update to 1.3.0
+
+* Sat Mar 18 2006 Greg Houlette <tamaster at pobox.com> - 1.2.8-3
+- Made an RPM transparent change to move the sha1 canary check
+  file out of CVS and into the external lookaside cache (whose
+  filename changes with every new package release anyway...)
+
+* Fri Mar 17 2006 Greg Houlette <tamaster at pobox.com> - 1.2.8-2
+- Fixed architectural dependency during package creation eliminating
+  use of _libdir configure macro (x86_64 /usr/lib64 mis-targeting)
+
+* Tue Mar 7 2006 Greg Houlette <tamaster at pobox.com> - 1.2.8-1
+- New package version release
+- reworked the .spec file to support optional dist tag
+- Updated the application check default patchfile (chunk failure)
+- Changed to SHA1 for optional message digest (canary check)
+- Added a couple of suggested skip entries to rkhunter.conf
+
+* Mon Jun 11 2005 Greg Houlette <tamaster at pobox.com> - 1.2.7-1
+- Added signature auto-updating to CRON scan (new script)
+- Removed BOOTSCAN pending rewrite to full SysV Init scan in background
+- Added the --append-log command line option
+- Added Date Stamping to output
+- Fixed bug in /etc/group missing report
+- New package version release
+
+* Sun Jan 2 2005 Greg Houlette <tamaster at tekarmory.com> - 0:1.1.9-1
+- New package version release
+- Added the --run-application-check command line option
+  to listing in command help
+- Replaced 'Here' Doc editing of rkhunter.conf file
+  with in-place Perl edit
+- tweaked rpmbuild -bb Autoclean
+
+* Fri Oct 15 2004 Greg Houlette - 0:1.1.8-0.fdr.1 (revisited)
+- Removed redundant buildrequires /bin/sh, coreutils and perl
+- Revise postun scriptlet
+- Added /usr/share/doc/rkhunter-1.1.8/ to files list
+
+* Mon Oct 11 2004 Greg Houlette - 0:1.1.8-0.fdr.1
+- Changed Release Tag to 0.fdr.1 (testing) for QA
+- Removed wget from dependencies
+- Hid (temporarily) the --skip-application-check command
+  line option from being listed in help
+- Fixed the spec files list, again!
+
+* Fri Oct 8 2004 Greg Houlette - 0:1.1.8-0.fdr.0.2.beta2
+- Unified and disabled the md5 canary check in prep
+  (check is now optional) removing the sha1 cross-check
+- Fixed the spec files list, adding the /var/rkhunter
+  directory and the /usr/bin/rkhunter executable
+- Fixed missing dependencies (rkh uses runtime checks)
+- Disabled "auto-clean" for rpmbuild -bb
+- Changed Application version scan default to
+  disabled awaiting backport fix in upstream sources
+- Fixed shared_man_search.patch, configuration files
+  verify and added postun(install) cleanup
+
+* Fri Oct 1 2004 Greg Houlette - 0:1.1.8-0.fdr.0.1.beta1
+- More cosmetic patchwork
+- Changed Release Tag to beta1 (pre-release) for QA submit
+
+* Tue Sep 28 2004 Greg Houlette - 0:1.1.8-0.fdr.1
+- Removed hidden_search.patch (1.1.7) after it was
+  merged into upstream source by Michael Boelen
+- Removed .spec file from md5 and sha1 file checks
+  (it must be modifiable by Fedora QA release build)
+- Added BOOTSCAN description file to documentation
+- Restructured dynamic file creation ('Here' Docs)
+  moving them to the "prep" stage so that *_ALL_*
+  files are available prior to the "build" stage
+  (for inspection purposes)
+- Added a /etc/sysconfig/rkhunter parameters file
+
+* Sun Aug 29 2004 Greg Houlette - 0:1.1.7-0.fdr.1
+- Cosmetic patchwork
+
+* Sat Aug 21 2004 Greg Houlette - 0:1.1.6-0.fdr.1
+- Moderate reworking of .spec file for packaging standards
+- Added md5 and sha1 file checks to prep procedure for source .rpm
+- Included an optional rc.local replacement for scan on boot (with full logging)
+
+* Tue Aug 10 2004 Michael Boelen - 1.1.5
+- Added update script
+- Extended description
+
+* Sun Aug 08 2004 Greg Houlette - 1.1.5
+- Changed the install procedure eliminating the specification of
+  destination filenames (only needed if you are renaming during install)
+- Changed the permissions for documentation files (root only overkill)
+- Added the installation of the rkhunter Man Page
+- Added the installation of the programs_{bad, good}.dat database files
+- Added the installation of the LICENSE documentation file
+- Added the chmod for root only to the /var/rkhunter/db directory
+
+* Sun May 23 2004 Craig Orsinger (cjo) <cjorsinger at earthlink.net>
+- version 1.1.0-1.cjo
+- changed installation in accordance with new rootkit installation
+  procedure
+- changed installation root to conform to LSB. Use standard macros.
+- added recursive remove of old build root as prep for install phase
+
+* Wed Apr 28 2004 Doncho N. Gunchev - 1.0.9-0.mr700
+- dropped Requires: perl - rkhunter works without it 
+- dropped the bash alignpatch (check the source or contact me)
+- various file mode fixes (.../tmp/, *.db)
+- optimized the %%files section - any new files in the
+  current dirs will be fine - just %%{__install} them.
+
+* Mon Apr 26 2004 Michael Boelen - 1.0.8-0
+- Fixed missing md5blacklist.dat
+
+* Mon Apr 19 2004 Doncho N. Gunchev - 1.0.6-1.mr700
+- added missing /usr/local/rkhunter/db/md5blacklist.dat
+- patched to align results in --cronjob, I think rpm based
+  distros have symlink /bin/sh -> /bin/bash
+- added --with/--without alignpatch for conditional builds
+  (in case previous patch breaks something)
+
+* Sat Apr 03 2004 Michael Boelen / Joe Klemmer - 1.0.6-0
+- Update to 1.0.6
+
+* Mon Mar 29 2004 Doncho N. Gunchev - 1.0.0-0
+- initial .spec file


--- NEW FILE rkhunter.sysconfig ---
# System configuration file for Rootkit Hunter which
# stores RPM system specifics for cron run, etc.
#
#    MAILTO= <email address to send scan report>
# DIAG_SCAN= no  - perform  normal  report scan
#            yes - perform detailed report scan
#                  (includes application check)

MAILTO=root at localhost
DIAG_SCAN=no


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	15 Feb 2008 04:30:23 -0000	1.8
@@ -0,0 +1 @@
+89a4628c6378fdf3331d5a43b975d967  rkhunter-1.3.0.tar.gz


--- dead.package DELETED ---




More information about the fedora-extras-commits mailing list