Added graphviz binary path adjustment for FreeBSD.

This commit is contained in:
Junichi Satoh 2015-06-14 10:02:43 +09:00
parent be56f5d6da
commit a75a7370cf

View File

@ -404,7 +404,8 @@ function adjust_paths_for_freebsd($engine, $connection = false) {
"update talert_commands set command = REPLACE(command,'/usr/bin','/usr/local/bin');",
"update talert_commands set command = REPLACE(command,'/usr/share', '/usr/local/share');",
"update tplugin set execute = REPLACE(execute,'/usr/share','/usr/local/share');",
"update tevent_response set target = REPLACE(target,'/usr/share','/usr/local/share');"
"update tevent_response set target = REPLACE(target,'/usr/share','/usr/local/share');",
"insert into tconfig (token, value) VALUES ('graphviz_bin_dir', '/usr/local/bin');"
);
for ($i = 0; $i < count ($adjust_sql); $i++) {