summaryrefslogtreecommitdiffstats
path: root/gitweb
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-03-05 07:27:12 +0100
committerJunio C Hamano <gitster@pobox.com>2010-03-05 07:27:12 +0100
commit7d181222ea568ada9952f23a8f92b35bce161cc2 (patch)
tree014fcf13b241769b956a924dcd050a6399aeb589 /gitweb
parentMerge branch 'jn/maint-fix-pager' into maint (diff)
parentgitweb: Die if there are parsing errors in config file (diff)
downloadgit-7d181222ea568ada9952f23a8f92b35bce161cc2.tar.xz
git-7d181222ea568ada9952f23a8f92b35bce161cc2.zip
Merge branch 'jn/gitweb-config-error-die' into maint
* jn/gitweb-config-error-die: gitweb: Die if there are parsing errors in config file
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl9
1 files changed, 6 insertions, 3 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 0b1e357ce9..3d80deba01 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -554,11 +554,14 @@ sub filter_snapshot_fmts {
}
our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
+our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
+# die if there are errors parsing config file
if (-e $GITWEB_CONFIG) {
do $GITWEB_CONFIG;
-} else {
- our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
- do $GITWEB_CONFIG_SYSTEM if -e $GITWEB_CONFIG_SYSTEM;
+ die $@ if $@;
+} elsif (-e $GITWEB_CONFIG_SYSTEM) {
+ do $GITWEB_CONFIG_SYSTEM;
+ die $@ if $@;
}
# Get loadavg of system, to compare against $maxload.