summaryrefslogtreecommitdiff
path: root/localwebstats-all
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2002-01-25 16:30:23 +0000
committerJonas Smedegaard <dr@jones.dk>2002-01-25 16:30:23 +0000
commitf0dc3f6abb9f09fe7f30541499bafa5b494bb0e2 (patch)
treec7cdb0cd25e1c4937cff7d663590f5abaca3bf34 /localwebstats-all
parent536365c05122a146065251447352ca0cf8c21bda (diff)
Delete localwebstats-all, Add whois-dk.
Diffstat (limited to 'localwebstats-all')
-rwxr-xr-xlocalwebstats-all24
1 files changed, 0 insertions, 24 deletions
diff --git a/localwebstats-all b/localwebstats-all
deleted file mode 100755
index c402d28..0000000
--- a/localwebstats-all
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-WEBROOT=/var/www
-LOGROOT=/var/log/apache
-
-function webdirs()
-{
- echo `find /var/log/apache -type d -print`
-# for dir in $(find ${LOGROOT} -type d -print)
-# do
-# echo $dir
-# done
-}
-
-. /etc/local/www || exit 1
-
-#for WEBSITE in $(ls $WWWROOT)
-#for WEBSITE in $(find $WWWROOT/* -type d -mindepth 1 -maxdepth 1 -print)
-for WEBSITE in $(webdirs); do
- if test $WEBSITE != "lost+found"
- then
- /usr/local/sbin/stats-init $WEBSITE
- fi
-done