diff options
author | Michael Vogel <icarus@dabo.de> | 2012-04-01 20:52:33 +0200 |
---|---|---|
committer | Michael Vogel <icarus@dabo.de> | 2012-04-01 20:52:33 +0200 |
commit | 4cf1e5aa21b3bcfac25d5ab95a2abccca48de523 (patch) | |
tree | a2b1d511b05b717b4a1cf8a63849d5d235f38a7f /include | |
parent | 7d23149a61f75923b2c71a288a722ee219f5e6ba (diff) | |
download | volse-hubzilla-4cf1e5aa21b3bcfac25d5ab95a2abccca48de523.tar.gz volse-hubzilla-4cf1e5aa21b3bcfac25d5ab95a2abccca48de523.tar.bz2 volse-hubzilla-4cf1e5aa21b3bcfac25d5ab95a2abccca48de523.zip |
poller: An optional lockfile is used to check if the poller is already running
Diffstat (limited to 'include')
-rwxr-xr-x | include/poller.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/poller.php b/include/poller.php index 90a97867c..499483d00 100755 --- a/include/poller.php +++ b/include/poller.php @@ -25,10 +25,20 @@ function poller_run($argv, $argc){ require_once('include/Contact.php'); require_once('include/email.php'); require_once('include/socgraph.php'); + require_once('include/pidfile.php'); load_config('config'); load_config('system'); + $lockpath = get_config('system','lockpath'); + if ($lockpath != '') { + $pidfile = new pidfile($lockpath, 'poller.lck'); + if($pidfile->is_already_running()) { + logger("poller: Already running"); + exit; + } + } + $a->set_baseurl(get_config('system','url')); load_hooks(); |