Final fix for #2059. I left in the comments in case something goes wrong with this.
This commit is contained in:
parent
c66be911e6
commit
e6cde00295
|
@ -396,16 +396,16 @@ if [ "$storage_is_local" = "yes" ]; then
|
||||||
# create PHP-related database tables
|
# create PHP-related database tables
|
||||||
cd $install_var_ls/storageServer/var/install
|
cd $install_var_ls/storageServer/var/install
|
||||||
# workaround for #2059; restore to "exit 1" after the ticket is closed
|
# workaround for #2059; restore to "exit 1" after the ticket is closed
|
||||||
#php -q install.php || exit 1;
|
php -q install.php || exit 1;
|
||||||
php -q install.php || true
|
#php -q install.php || true
|
||||||
cd -
|
cd -
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# create PHP-related database tables
|
# create PHP-related database tables
|
||||||
cd $install_var_ls/archiveServer/var/install
|
cd $install_var_ls/archiveServer/var/install
|
||||||
# workaround for ticket #2059; restore to "exit 1" after the ticket is closed
|
# workaround for ticket #2059; restore to "exit 1" after the ticket is closed
|
||||||
#php -q install.php || exit 1;
|
php -q install.php || exit 1;
|
||||||
php -q install.php || true
|
#php -q install.php || true
|
||||||
cd -
|
cd -
|
||||||
|
|
||||||
# create scheduler-related database tables
|
# create scheduler-related database tables
|
||||||
|
|
Loading…
Reference in New Issue