rpms/rkhunter/F-8 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 01-rkhunter, NONE, 1.1 Makefile, 1.3, 1.4 rkhunter.spec, 1.10, 1.11 rkhunter.sysconfig, NONE, 1.1 rkhunter-1.3.2.tar.gz.sha1.txt, NONE, 1.1 dead.package, 1.1, NONE

Kevin Fenzi (kevin) fedora-extras-commits at redhat.com
Sat Mar 1 20:40:07 UTC 2008


Author: kevin

Update of /cvs/extras/rpms/rkhunter/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27416

Added Files:
	.cvsignore sources 01-rkhunter Makefile rkhunter.spec 
	rkhunter.sysconfig rkhunter-1.3.2.tar.gz.sha1.txt 
Removed Files:
	dead.package 
Log Message:
Bring package back, update



Index: .cvsignore
===================================================================
RCS file: .cvsignore
diff -N .cvsignore
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ .cvsignore	1 Mar 2008 20:39:32 -0000	1.8
@@ -0,0 +1 @@
+rkhunter-1.3.2.tar.gz


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	1 Mar 2008 20:39:32 -0000	1.8
@@ -0,0 +1 @@
+a00ff64d7076d6ff47ef0c9f0b6202f2  rkhunter-1.3.2.tar.gz


--- 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 /var/rkhunter/tmp rkhcronlog.XXXXXXXXXX` || exit 1

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

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

  # Source system configuration parameters.
  if [ -e /etc/sysconfig/rkhunter ] ; then
    . /etc/sysconfig/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=/usr/bin/rkhunter
  LOGFILE=/var/log/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 /var/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	1 Mar 2008 20:39:32 -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)


Index: rkhunter.spec
===================================================================
RCS file: rkhunter.spec
diff -N rkhunter.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ rkhunter.spec	1 Mar 2008 20:39:32 -0000	1.11
@@ -0,0 +1,268 @@
+Name:           rkhunter
+Version:        1.3.2
+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.2.tar.gz
+Source1:        http://downloads.sourceforge.net/rkhunter/rkhunter-1.3.2.tar.gz.sha1.txt
+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|;
+%if 0%{?el4}%{?el5}
+	s|^#(OS_VERSION_FILE=).+$|$1/etc/redhat-release|;
+%else
+	s|^#(OS_VERSION_FILE=).+$|$1/etc/fedora-release|;
+%endif
+	s|^#(ALLOWHIDDENDIR=).+$|$1/dev/.udev|;
+	s|^#(ALLOWHIDDENFILE=).+$|$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
+%if 0%{?fc8}%{?fc9}
+echo "SYSLOG_CONFIG_FILE=/etc/rsyslog.conf" >> files/%name.conf
+%else
+echo "SYSLOG_CONFIG_FILE=/etc/syslog.conf" >> files/%name.conf
+%endif
+
+%{__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
+* Thu Feb 28 2008 Kevin Fenzi <kevin at tummy.com> - 1.3.2-1
+- Update to 1.3.2
+- Fix cron script
+
+* Thu Feb 28 2008 Kevin Fenzi <kevin at tummy.com> - 1.3.0-2
+- Use /etc/redhat-release for EPEL and /etc/fedora release for Fedora.
+- Add conditionals to support EPEL
+- Fix man page warning. 
+
+* 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


--- NEW FILE rkhunter-1.3.2.tar.gz.sha1.txt ---
5dfa5246dc1c87b05f44f9f444466ce3d0d6edec  rkhunter-1.3.2/files/stat.pl
73a42c94be2fb1fd3284d8dc60d22ff0fc8407f4  rkhunter-1.3.2/files/WISHLIST
5c4319fe3f9acc552b7a9e973b7d081f7cb31642  rkhunter-1.3.2/files/check_port.pl
56bf42d4fe669412b84eb307d5e314af4501dc9a  rkhunter-1.3.2/files/testing/stringscanner.sh
361ada5406c7e57e62e840caf3d3bce5e8436fc1  rkhunter-1.3.2/files/testing/rootkitinfo.txt
73e76916a3f65dde2317fff6c932e1d77760fdf7  rkhunter-1.3.2/files/testing/rkhunter.conf
345ab306455525cf5626caadda22b5dcbf732bc1  rkhunter-1.3.2/files/LICENSE
cb4903c649ad50b79230f5a5250da82c1d9ccb0f  rkhunter-1.3.2/files/development/createhashes.sh
e158163bfe6cb414d839e91880af37611f8b5cc0  rkhunter-1.3.2/files/development/createfilehashes.pl
7378fb7e91b1f7e789508e4e8d00e1e3a70ee6ff  rkhunter-1.3.2/files/development/search_dead_sysmlinks.sh
0c613880f3447af695ca9f9f93e158b34c2a10c3  rkhunter-1.3.2/files/development/osinformation.sh
4f4dfb87e758236cadc5ac5af67bbb35f4f63eb1  rkhunter-1.3.2/files/development/rpmprelinkhashes.sh
d09ab61a3563122b8cd6415e3083dfe1ef285a2b  rkhunter-1.3.2/files/development/i18nchk
6b2f032d6143ed3b6ba3eae19d7921e154e69e47  rkhunter-1.3.2/files/development/createhashesall.sh
614a5d3999055a8faeecc393c5695d628e5a7675  rkhunter-1.3.2/files/development/rpmhashes.sh
ebc05604eb51b10478d35ac3750699cefecd5ae3  rkhunter-1.3.2/files/filehashmd5.pl
736fd9ea453f34c023a9ebed97fa0cea7461aeb8  rkhunter-1.3.2/files/i18n/zh.utf8
52ac2bcbe9524971cc535b20fb6d3442f53ea8b0  rkhunter-1.3.2/files/i18n/cn
3aa3999bd924382f2a7b7e52ad0c3f7834d2285c  rkhunter-1.3.2/files/i18n/zh
02e945d8a260275e118064080767db349fe576ef  rkhunter-1.3.2/files/i18n/en
a656a91b37a83a2325843f0ccedb5eb7866506ac  rkhunter-1.3.2/files/mirrors.dat
1878119b6045eeab6a5afaebad7b523e86c3a935  rkhunter-1.3.2/files/filehashsha1.pl
9ddeec64999f4c0e6f9aa5992cd25c503311b764  rkhunter-1.3.2/files/backdoorports.dat
82c8c3881d59d228de3ce74a4b7b68eac07940f1  rkhunter-1.3.2/files/md5blacklist.dat
e3ba269e33d5d385230d0a4457d87cf6e3acece8  rkhunter-1.3.2/files/tools/update_server.sh
90876286c511986474144a5a1fc21afa0f5f29c5  rkhunter-1.3.2/files/tools/update_client.sh
ff10891d252f3859abe63054eb64f0e9eae2d781  rkhunter-1.3.2/files/tools/README
ec4d60774decbb354f7aafcc2b65b1f87e000c97  rkhunter-1.3.2/files/suspscan.dat
7fa41ed0dc8c95b48b04dab42f1eaf8031c6ce7c  rkhunter-1.3.2/files/ACKNOWLEDGMENTS
70fac95d14f77a3917c60f368edbfb9d90ce77c0  rkhunter-1.3.2/files/CHANGELOG
951b498f71fc4a126ca435f7bce96ed8b821efb6  rkhunter-1.3.2/files/os.dat
996a29dee608374e601ecf0253e445e16506c672  rkhunter-1.3.2/files/check_update.sh
e651578a9556934bee10621b99297bbd6ccec273  rkhunter-1.3.2/files/rkhunter
575f460146ef61beeda2733f2e3f82c61909d3a8  rkhunter-1.3.2/files/rkhunter.conf
6753f47a54fdfad483fe06ad68dd47161f5efa45  rkhunter-1.3.2/files/rkhunter.8
a0b8900db1484a34f0505bf90b5a07fb38433151  rkhunter-1.3.2/files/rkhunter.spec
897aecb909610d8c2b967fffba4f9626416789fb  rkhunter-1.3.2/files/README
d824c9ca8b591d108bd7b194350166ac65e64212  rkhunter-1.3.2/files/readlink.sh
c82074175e72642dd74322ce29281f0f2fe2798c  rkhunter-1.3.2/files/programs_bad.dat
d5bff919ce44a345a193824ea16b0404008d7823  rkhunter-1.3.2/files/programs_good.dat
59de768a09a4cd13599653df85ecc2362e416ab3  rkhunter-1.3.2/files/defaulthashes.dat
43bca835d9c64ab2f8cf7f1a5a078bb1b7da9306  rkhunter-1.3.2/files/showfiles.pl
286d1c1fcfa924d63583ae961382250724ac9599  rkhunter-1.3.2/files/FAQ
a0badd192cc4f33fbf38f446eae3c858ba81c88f  rkhunter-1.3.2/files/check_modules.pl
285155f63cfa7a6a73ec0352dccaaa2221989b94  rkhunter-1.3.2/files/contrib/rkhunter_remote_howto.txt
beed9c4b594c5be28ca4837fdcd2ac367e2946ee  rkhunter-1.3.2/files/contrib/run_rkhunter.sh
225cc53f9691ad39f10bd2aaac478355ce4dc411  rkhunter-1.3.2/files/contrib/README.txt
1b37e37eb80b4d7fd97b3d4e7f3711d3c4a335f4  rkhunter-1.3.2/installer.sh


--- dead.package DELETED ---




More information about the fedora-extras-commits mailing list