All external poller addons are now deactivated

This commit is contained in:
Michael 2017-08-23 12:32:00 +00:00
parent c1b2989812
commit 5148db9d6d
4 changed files with 23 additions and 8 deletions

View file

@ -8,8 +8,11 @@
* Author: Mike Macgirvin <https://macgirvin.com/profile/mike>
*
* Notes: External service needs to make a web request to http(s)://yoursite/extcron
* Status: Unsupported
*/
require_once "mod/worker.php";
function extcron_install() {}
function extcron_uninstall() {}
@ -17,6 +20,10 @@ function extcron_uninstall() {}
function extcron_module() {}
function extcron_init(&$a) {
proc_run('php','include/poller.php');
worker_init($a);
killme();
// Deactivated
//proc_run('php','include/poller.php');
//killme();
}