diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-25 21:23:48 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-25 21:23:48 +0000 |
commit | 18fa8363e2dd66249614a1a74591e780b2019b76 (patch) | |
tree | 126cd63023ed3ef56a0ed62034719db6face23d2 /security/rkhunter/files | |
parent | db26f1e7218eadd1b59bf06cdf28f1243bd2ad19 (diff) | |
download | ports-18fa8363e2dd66249614a1a74591e780b2019b76.tar.gz ports-18fa8363e2dd66249614a1a74591e780b2019b76.zip |
Notes
Diffstat (limited to 'security/rkhunter/files')
-rw-r--r-- | security/rkhunter/files/patch-installer.sh | 86 | ||||
-rw-r--r-- | security/rkhunter/files/patch-rkhunter.conf | 11 | ||||
-rw-r--r-- | security/rkhunter/files/pkg-message.in | 7 |
3 files changed, 104 insertions, 0 deletions
diff --git a/security/rkhunter/files/patch-installer.sh b/security/rkhunter/files/patch-installer.sh new file mode 100644 index 000000000000..efbe57d1fe99 --- /dev/null +++ b/security/rkhunter/files/patch-installer.sh @@ -0,0 +1,86 @@ +--- installer.sh.orig Sun Jul 25 16:20:28 2004 ++++ installer.sh Sun Jul 25 17:19:48 2004 +@@ -69,6 +69,7 @@ + ;; + *) + echo "Wrong parameter" ++ exit + ;; + esac + shift +@@ -111,21 +112,18 @@ + overwrite:check_port.pl:/scripts/check_port.pl:Portscanner + overwrite:filehashmd5.pl:/scripts/filehashmd5.pl:MD5%%Digest%%generator + overwrite:filehashsha1.pl:/scripts/filehashsha1.pl:SHA1%%Digest%%generator +-verwrite:showfiles.pl:/scripts/showfiles.pl:Directory%%viewer ++overwrite:showfiles.pl:/scripts/showfiles.pl:Directory%%viewer + overwrite:backdoorports.dat:/db/backdoorports.dat:Database%%Backdoor%%ports + overwrite:mirrors.dat:/db/mirrors.dat:Database%%Update%%mirrors + overwrite:os.dat:/db/os.dat:Database%%Operating%%Systems + overwrite:defaulthashes.dat:/db/defaulthashes.dat:Database%%Default%%file%%hashes + overwrite:md5blacklist.dat:/db/md5blacklist.dat:Database%%MD5%%blacklisted%%files +-overwrite:CHANGELOG:/docs/CHANGELOG:Changelog +-overwrite:README:/docs/README:Readme%%and%%FAQ +-overwrite:WISHLIST:/docs/WISHLIST:Wishlist%%and%%TODO + " + + # Prefix: INSTALLDIR + INSTALLFILES2=" +-overwrite:rkhunter.conf:/usr/local/etc/rkhunter.conf:RK%%Hunter%%configuration%%file +-overwrite:rkhunter:/usr/local/bin/rkhunter:RK%%Hunter%%binary ++overwrite:rkhunter.conf:/etc/rkhunter.conf.sample:RK%%Hunter%%configuration%%file ++overwrite:rkhunter:/bin/rkhunter:RK%%Hunter%%binary + " + + # Create directories (only if they do not exist) +@@ -134,10 +132,7 @@ + ${INSTALLDIR}/etc + ${INSTALLDIR}/bin + ${INSTALLDIR}/lib/rkhunter/db +-${INSTALLDIR}/lib/rkhunter/docs + ${INSTALLDIR}/lib/rkhunter/scripts +-${INSTALLDIR}/lib/rkhunter/tmp +-/usr/local/etc + " + + CHECKDIR="/usr/local" +@@ -345,8 +340,6 @@ + + + # Clean active window +-clear +- + echo "${INSTALLER_NAME} ${INSTALLER_VERSION} (${INSTALLER_COPYRIGHT})" + echo $ECHOOPT "---------------" + echo "Starting installation/update" +@@ -467,7 +460,7 @@ + if [ -f ${INSTALLPREFIX}${CURFILE} ] + then + #error redirection in .rkhunter it's just for a clear display if user run not as root +- cp -f ${INSTALLPREFIX}${CURFILE} ${NEWFILE} 2> ~/.rkhunter.log ++ cp -f ${INSTALLPREFIX}${CURFILE} "${INSTALLDIR}/${NEWFILE}" 2> ~/.rkhunter.log + if [ $? -eq 0 ] + then + echo $E "OK" +@@ -482,10 +475,10 @@ + + done + +-INSTALLDIRCHECK=`cat /usr/local/etc/rkhunter.conf | grep "INSTALLDIR="` ++INSTALLDIRCHECK=`cat $INSTALLDIR/etc/rkhunter.conf.sample | grep "INSTALLDIR="` + if [ "${INSTALLDIRCHECK}" = "" ] + then +- echo "INSTALLDIR=${INSTALLDIR}" >> /usr/local/etc/rkhunter.conf ++ echo "INSTALLDIR=${INSTALLDIR}" >> $INSTALLDIR/etc/rkhunter.conf.sample + echo "Configuration updated with installation path (${INSTALLDIR})" + else + echo "Configuration already updated." +@@ -495,7 +488,7 @@ + then + echo "" + echo $E "$t17" +- echo "$t18 (/usr/local/bin/rkhunter)" ++ echo "$t18 (${INSTALLDIR}/bin/rkhunter)" + else + echo "" + echo $E "$t19" diff --git a/security/rkhunter/files/patch-rkhunter.conf b/security/rkhunter/files/patch-rkhunter.conf new file mode 100644 index 000000000000..63b7628460d9 --- /dev/null +++ b/security/rkhunter/files/patch-rkhunter.conf @@ -0,0 +1,11 @@ +--- files/rkhunter.conf.orig Sun Jul 25 17:08:25 2004 ++++ files/rkhunter.conf Sun Jul 25 17:08:48 2004 +@@ -8,7 +8,7 @@ + + # Use a custom temporary directory (you can override it with the + # --tmpdir parameter) +-#TMPDIR=/tmp ++TMPDIR=/tmp + + # Use a custom database directory (you can override it with the + # --dbdir parameter) diff --git a/security/rkhunter/files/pkg-message.in b/security/rkhunter/files/pkg-message.in new file mode 100644 index 000000000000..18459e773237 --- /dev/null +++ b/security/rkhunter/files/pkg-message.in @@ -0,0 +1,7 @@ + +############################################################################# + Installed additional documentation in: PREFIX/share/doc/rkhunter + Copy PREFIX/etc/rkhunter.conf.sample to PREFIX/etc/rkhunter.conf +############################################################################# + + |