#!/bin/sh -e

CF=/etc/chkrootkit.conf

if [ -e $CF ]; then
    . $CF
fi

if [ "$RUN_DAILY" = "true" ]; then
    chkrootkit $RUN_DAILY_OPTS
fi

