summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Walker <ka0ttic@gentoo.org>2005-03-19 14:26:37 +0000
committerAaron Walker <ka0ttic@gentoo.org>2005-03-19 14:26:37 +0000
commita0a7183c4a5cd820eeffd7a86a0191b552a8b2c5 (patch)
treef9956c26350423b2563e48bd870f8527679bfc0e /app-forensics/rkhunter/files
parentVersion bump, closes bug #83365. LICENSE correction. (diff)
downloadgentoo-2-a0a7183c4a5cd820eeffd7a86a0191b552a8b2c5.tar.gz
gentoo-2-a0a7183c4a5cd820eeffd7a86a0191b552a8b2c5.tar.bz2
gentoo-2-a0a7183c4a5cd820eeffd7a86a0191b552a8b2c5.zip
Version bump for bug 85840; marked 1.2.1 stable on x86.
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-forensics/rkhunter/files')
-rw-r--r--app-forensics/rkhunter/files/digest-rkhunter-1.2.21
-rw-r--r--app-forensics/rkhunter/files/rkhunter-1.2.2-fix-broken-test.diff18
2 files changed, 19 insertions, 0 deletions
diff --git a/app-forensics/rkhunter/files/digest-rkhunter-1.2.2 b/app-forensics/rkhunter/files/digest-rkhunter-1.2.2
new file mode 100644
index 000000000000..8b007d366603
--- /dev/null
+++ b/app-forensics/rkhunter/files/digest-rkhunter-1.2.2
@@ -0,0 +1 @@
+MD5 07c6f9450b9af22c63a3821d96f7e1c9 rkhunter-1.2.2.tar.gz 121868
diff --git a/app-forensics/rkhunter/files/rkhunter-1.2.2-fix-broken-test.diff b/app-forensics/rkhunter/files/rkhunter-1.2.2-fix-broken-test.diff
new file mode 100644
index 000000000000..a634766f132f
--- /dev/null
+++ b/app-forensics/rkhunter/files/rkhunter-1.2.2-fix-broken-test.diff
@@ -0,0 +1,18 @@
+--- rkhunter.orig 2005-03-19 09:21:45.000000000 -0500
++++ rkhunter 2005-03-19 09:20:24.000000000 -0500
+@@ -1,5 +1,6 @@
+ #!/bin/bash
+
++
+ #################################################################################
+ #
+ # Rootkit Hunter
+@@ -3865,7 +3866,7 @@
+ USER=`echo "${I}" | cut -d ':' -f1`
+ PASSWORD=`echo "${I}" | cut -d ':' -f2`
+ # Exclude NIS-user (+::::::)
+- if [ ! ${USER} = "+" -a "${PASSWORD}" = "" ]; then
++ if [ ${USER} != "+" ] && [ "${PASSWORD}" = "" ]; then
+ FOUND=1
+ logtext "Warning! Found passwordless account (${USER})"
+ logtext "Check this account and give it a password."