From 375409008e8c84e7e81b781de09fd3e20783fd02 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Thu, 9 Sep 2004 10:14:42 +0000 Subject: Let default post_init() fail gracefully. --- localwebstats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'localwebstats') diff --git a/localwebstats b/localwebstats index 1e4c766..34479e4 100755 --- a/localwebstats +++ b/localwebstats @@ -3,7 +3,7 @@ # /usr/local/sbin/localwebstats # Copyright 2001-2002 Jonas Smedegaard # -# $Id: localwebstats,v 1.37 2004-09-09 09:57:27 jonas Exp $ +# $Id: localwebstats,v 1.38 2004-09-09 10:14:42 jonas Exp $ # # Webstats maintenance script # @@ -103,7 +103,7 @@ function rmagic_cfg() { echo /etc/rmagic/rmagic_$3.conf; } function webalizer_cfg() { echo /etc/webalizer_$3.conf; } function modlogan_cfg() { echo /etc/modlogan/modlogan_$3.conf; } function pre_init() { true; } -function post_init() { statsdir="`statsdir $1 $2 $3`"; test -f $statsdir/../COMMON/index.html && cp $statsdir/../COMMON/index.html $statsdir/; } +function post_init() { statsdir="`statsdir $1 $2 $3`"; test -f $statsdir/../COMMON/index.html && cp $statsdir/../COMMON/index.html $statsdir/ || /bin/true; } function pre_update() { true; } function post_update() { true; } -- cgit v1.2.3