add extcron

This commit is contained in:
friendica 2012-01-11 20:56:22 -08:00
parent 2a63618dc7
commit 65011212a8
2 changed files with 21 additions and 0 deletions

BIN
extcron.tgz Normal file

Binary file not shown.

21
extcron/extcron.php Normal file
View File

@ -0,0 +1,21 @@
<?php
/**
* Name: external cron
* Description: Use external server or service to run poller regularly
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*
* Notes: External service needs to make a web request to http(s)://yoursite/extcron
*/
function extcron_install() {}
function nsfw_uninstall() {}
function extcron_module() {}
function extcron_init(&$a) {
proc_run('php','include/poller.php');
}