]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix duplicates table check; make sure we create graphs directory.
authorgerv%gerv.net <>
Fri, 15 Dec 2000 01:48:01 +0000 (01:48 +0000)
committergerv%gerv.net <>
Fri, 15 Dec 2000 01:48:01 +0000 (01:48 +0000)
checksetup.pl

index 2860a062d3457ebcd7abdd5fc926f48bffea4317..824802ec639830fce367df27c562c681271244f0 100755 (executable)
@@ -1784,14 +1784,13 @@ if (!($sth->fetchrow_arrayref()->[0])) {
 }
 
 # 2000-12-14 New graphing system requires a directory to put the graphs in
-# How do we make the new directory owned by the webserver's group? Until 
-# we find out, make it 0777.
+# This code copied from what happens for the 'data' dir above.
 unless (-d 'graphs') {
     print "Creating graphs directory ...\n";
-    mkdir 'graphs', 0777;   # was 0770 in the code (above) I pinched this from
+    mkdir 'graphs', 0770; 
     if ($::webservergroup eq "") {
         chmod 0777, 'graphs';
-    }
+    } 
 }