diff options
author | git-marijus <mario@mariovavti.com> | 2018-01-18 11:38:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 11:38:34 +0100 |
commit | 577da0eb9eb1f90a4cf7a70cfb3582cfb49007ac (patch) | |
tree | 482cdf1666da2bfdf1ea0c02373ed2ccc63fb840 | |
parent | eee037f7c29693b463d16c60b1f231098c8a0ef8 (diff) | |
parent | 949cce094ec5f31f3b3c0ddcef39725e0793b3f7 (diff) | |
download | volse-hubzilla-577da0eb9eb1f90a4cf7a70cfb3582cfb49007ac.tar.gz volse-hubzilla-577da0eb9eb1f90a4cf7a70cfb3582cfb49007ac.tar.bz2 volse-hubzilla-577da0eb9eb1f90a4cf7a70cfb3582cfb49007ac.zip |
Merge pull request #956 from einervonvielen/homeinstall-fix-cron
Fixed poller. Use Master.php
-rwxr-xr-x | .homeinstall/hubzilla-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.homeinstall/hubzilla-setup.sh b/.homeinstall/hubzilla-setup.sh index 635bb3518..3ad9aa37f 100755 --- a/.homeinstall/hubzilla-setup.sh +++ b/.homeinstall/hubzilla-setup.sh @@ -641,7 +641,7 @@ function configure_cron_daily { # every 10 min for poller.php if [ -z "`grep 'poller.php' /etc/crontab`" ] then - echo "*/10 * * * * www-data cd /var/www/html; php include/poller.php >> /dev/null 2>&1" >> /etc/crontab + echo "*/10 * * * * www-data cd /var/www/html; php Zotlabs/Daemon/Master.php Cron >> /dev/null 2>&1" >> /etc/crontab fi # Run external script daily at 05:30 # - stop apache and mysql-server |