Lockfile for onepoll, removing old smarty3 cache files.
This commit is contained in:
parent
edf8bde581
commit
4dcd00cf4b
|
@ -42,7 +42,7 @@ function onepoll_run(&$argv, &$argc){
|
||||||
load_hooks();
|
load_hooks();
|
||||||
|
|
||||||
logger('onepoll: start');
|
logger('onepoll: start');
|
||||||
|
|
||||||
$manual_id = 0;
|
$manual_id = 0;
|
||||||
$generation = 0;
|
$generation = 0;
|
||||||
$hub_update = false;
|
$hub_update = false;
|
||||||
|
@ -56,7 +56,17 @@ function onepoll_run(&$argv, &$argc){
|
||||||
logger('onepoll: no contact');
|
logger('onepoll: no contact');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Test
|
||||||
|
$lockpath = get_config('system','lockpath');
|
||||||
|
if ($lockpath != '') {
|
||||||
|
$pidfile = new pidfile($lockpath, 'onepoll'.$contact_id.'.lck');
|
||||||
|
if($pidfile->is_already_running()) {
|
||||||
|
logger("onepoll: Already running for contact ".$contact_id);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$d = datetime_convert();
|
$d = datetime_convert();
|
||||||
|
|
||||||
|
|
|
@ -122,6 +122,9 @@ function poller_run(&$argv, &$argc){
|
||||||
// clear cache for photos
|
// clear cache for photos
|
||||||
clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
|
clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
|
||||||
|
|
||||||
|
// clear smarty cache
|
||||||
|
clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
|
||||||
|
|
||||||
set_config('system','cache_last_cleared', time());
|
set_config('system','cache_last_cleared', time());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user