diff options
Diffstat (limited to 'etc/cron.daily/visitors')
-rwxr-xr-x | etc/cron.daily/visitors | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/etc/cron.daily/visitors b/etc/cron.daily/visitors index e310dde7..ef011d65 100755 --- a/etc/cron.daily/visitors +++ b/etc/cron.daily/visitors @@ -3,6 +3,14 @@ # Copyright 2012 Holger Levsen <holger@layer-acht.org> # released under the GPLv=2 +[ -x /usr/bin/visitors ] || exit 0 +[ -x /usr/bin/ip2host ] || exit 0 + +if [ ! -f /usr/share/doc/zutils/copyright ] ; then + echo package zutils needs to be installed too + exit 1 +fi + LOGS=$(mktemp) DOT=$(mktemp) # FIXME: provide monthly stats and don't run this daily |