2014-11-24 00:41:30 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-06-16 00:28:13 -05:00
|
|
|
HTML_ROOT=/var/www/html
|
2014-12-05 09:43:56 -06:00
|
|
|
|
2016-01-17 04:58:15 -06:00
|
|
|
# Run updater if we have an existing install
|
2019-06-16 00:28:13 -05:00
|
|
|
if [[ -e "$HTML_ROOT/LocalSettings.php" ]]; then
|
|
|
|
cd "$HTML_ROOT/maintenance"
|
2019-06-16 14:45:09 -05:00
|
|
|
DB_SERVER=$(/get-variable wgDBserver)
|
|
|
|
/wait-for-it "$DB_SERVER:3306"
|
2016-01-17 04:58:15 -06:00
|
|
|
php update.php
|
|
|
|
fi
|
2019-06-16 00:28:13 -05:00
|
|
|
|
|
|
|
apache2-foreground
|