2019-11-25 22:58:18 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-11-27 15:09:20 +01:00
|
|
|
# Create the misp cron tab
|
2019-11-26 22:18:52 +01:00
|
|
|
cat << EOF > /etc/cron.d/misp
|
2019-11-27 15:09:20 +01:00
|
|
|
00 0 * * * www-data /var/www/MISP/app/Console/cake Server pull "$CRON_USER_ID" >/tmp/cronlog 2>/tmp/cronlog
|
|
|
|
10 0 * * * www-data /var/www/MISP/app/Console/cake Server push "$CRON_USER_ID" >/tmp/cronlog 2>/tmp/cronlog
|
|
|
|
20 0 * * * www-data /var/www/MISP/app/Console/cake Server cacheFeed "$CRON_USER_ID" all >/tmp/cronlog 2>/tmp/cronlog
|
|
|
|
30 0 * * * www-data /var/www/MISP/app/Console/cake Server fetchFeed "$CRON_USER_ID" all >/tmp/cronlog 2>/tmp/cronlog
|
2019-11-25 22:58:18 +01:00
|
|
|
|
2019-11-27 15:09:20 +01:00
|
|
|
00 1 * * * www-data /var/www/MISP/app/Console/cake Admin updateGalaxies >/tmp/cronlog 2>/tmp/cronlog
|
|
|
|
10 1 * * * www-data /var/www/MISP/app/Console/cake Admin updateTaxonomies >/tmp/cronlog 2>/tmp/cronlog
|
|
|
|
20 1 * * * www-data /var/www/MISP/app/Console/cake Admin updateWarningLists >/tmp/cronlog 2>/tmp/cronlog
|
|
|
|
30 1 * * * www-data /var/www/MISP/app/Console/cake Admin updateNoticeLists >/tmp/cronlog 2>/tmp/cronlog
|
|
|
|
45 1 * * * www-data /var/www/MISP/app/Console/cake Admin updateObjectTemplates >/tmp/cronlog 2>/tmp/cronlog
|
2019-11-25 22:58:18 +01:00
|
|
|
|
2019-11-26 22:18:52 +01:00
|
|
|
EOF
|
2019-11-25 22:58:18 +01:00
|
|
|
|
2019-11-27 15:09:20 +01:00
|
|
|
# Build a fifo buffer for the cron logs, 777 so anyone can write to it
|
|
|
|
mkfifo /tmp/cronlog
|
|
|
|
chmod 777 /tmp/cronlog
|
|
|
|
|
|
|
|
cron -f | tail -f /tmp/cronlog
|