From 143c573139d2ab1e525cd0bc131935d31976eb63 Mon Sep 17 00:00:00 2001 From: tomash Date: Tue, 5 Dec 2006 22:07:49 +0000 Subject: [PATCH] #2076 quickfix --- campcaster/bin/postInstallStation.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/campcaster/bin/postInstallStation.sh b/campcaster/bin/postInstallStation.sh index 64086679c..f8e47df09 100755 --- a/campcaster/bin/postInstallStation.sh +++ b/campcaster/bin/postInstallStation.sh @@ -386,6 +386,13 @@ cd $install_var_ls/storageServer/var/install php -q install.php || true cd - +# create PHP-related database tables +cd $install_var_ls/archiveServer/var/install +# workaround for ticket #2059; restore to "exit 1" after the ticket is closed +#php -q install.php || exit 1; +php -q install.php || true +cd - + # create scheduler-related database tables cd $installdir ./bin/campcaster-scheduler.sh install || exit 1;