|
|
@@ -188,6 +188,12 @@ class Route_Cron extends RouteBase {
|
|
|
|
|
|
public function checkInstallAction() {
|
|
|
Lib::loadClass('Router');
|
|
|
+ {
|
|
|
+ ob_start();
|
|
|
+ Router::getRoute('Status')->updateObjectCachePostTask();
|
|
|
+ $out = ob_get_clean();
|
|
|
+ echo " - Storage acl cache checked\n";
|
|
|
+ }
|
|
|
$routeToReinstallList = array();
|
|
|
//$routeToReinstallList[] = 'Config';// Config must work before (url token)
|
|
|
$routeToReinstallList[] = 'Msgs';
|
|
|
@@ -202,12 +208,6 @@ class Route_Cron extends RouteBase {
|
|
|
$route->reinstall();
|
|
|
echo " - {$routeName} checked\n";
|
|
|
}
|
|
|
- {
|
|
|
- ob_start();
|
|
|
- Router::getRoute('Status')->updateObjectCachePostTask();
|
|
|
- $out = ob_get_clean();
|
|
|
- echo " - Storage acl cache checked\n";
|
|
|
- }
|
|
|
echo "\n.EOF\n";
|
|
|
}
|
|
|
|