]> git.pld-linux.org Git - packages/chkrootkit.git/blame - chkrootkit-check
fixed a small typo
[packages/chkrootkit.git] / chkrootkit-check
CommitLineData
8f805fb6
PG
1#!/bin/sh
2
3# Get service config
a513d2d4 4[ -f /etc/sysconfig/chkrootkit ] && . /etc/sysconfig/chkrootkit
8f805fb6
PG
5
6DATA=`date`
7SYSTEM=`hostname`
8
9/usr/bin/chkrootkit | /bin/egrep -v '(not (infected|found|promisc)|nothing (found|detected|deleted)|no suspect files|ROOTDIR is)' > /var/tmp/$$
10LIN=`grep -c . /var/tmp/$$`
11if [ "$LIN" -gt "1" ]; then
12 mail -s "CHKROOTKIT $SYSTEM $DATA" $CHKROOTKIT_MAILTO < /var/tmp/$$
13fi
14rm -f /var/tmp/$$
This page took 0.089288 seconds and 4 git commands to generate.