Commit a8df8cfd authored by gerv%gerv.net's avatar gerv%gerv.net

Fix duplicates table check; make sure we create graphs directory.

parent 6fb4c1bb
...@@ -1784,14 +1784,13 @@ if (!($sth->fetchrow_arrayref()->[0])) { ...@@ -1784,14 +1784,13 @@ if (!($sth->fetchrow_arrayref()->[0])) {
} }
# 2000-12-14 New graphing system requires a directory to put the graphs in # 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 # This code copied from what happens for the 'data' dir above.
# we find out, make it 0777.
unless (-d 'graphs') { unless (-d 'graphs') {
print "Creating graphs directory ...\n"; print "Creating graphs directory ...\n";
mkdir 'graphs', 0777; # was 0770 in the code (above) I pinched this from mkdir 'graphs', 0770;
if ($::webservergroup eq "") { if ($::webservergroup eq "") {
chmod 0777, 'graphs'; chmod 0777, 'graphs';
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment