Advertisement
chrissharp123

Untitled

May 26th, 2017
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1. # Run pending A/T events.
  2. 15,45 * * * * . /etc/profile && cd /openils/bin && /usr/bin/perl ./action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --run-pending
  3. ## Hourly
  4. 0 * * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --granularity hourly --run-pending
  5. ## Daily
  6. 5 3 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --granularity daily --run-pending
  7. ## Holds Ready
  8. 20,55 * * * * . /etc/profile && cd /openils/bin && /usr/bin/perl ./action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --run-pending --granularity hold-ready-email --granularity-only
  9. 10,40 * * * * . /etc/profile && cd /openils/bin && /usr/bin/perl ./action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --run-pending --granularity hold-ready-sms --granularity-only
  10. 15,45 * * * * . /etc/profile && cd /openils/bin && /usr/bin/perl ./action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --run-pending --granularity hold-ready-pmc --granularity-only
  11. ## LongOverdue Processing
  12. 0 1 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --hooks=checkout.due --run-pending --granularity longoverdue --granularity-only
  13. ## LongOverdue Notices
  14. 30 3 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --run-pending --granularity longoverdue-notices --granularity-only
  15. ## Preminders
  16. 0 */3 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --hooks=checkout.due --run-pending --granularity preminders-email --granularity-only
  17. 30 */3 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --hooks=checkout.due --run-pending --granularity preminders-pmc --granularity-only
  18. 15 8,12,16 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --hooks=checkout.due --run-pending --granularity preminders-sms --granularity-only
  19. ## ASAP - Password resets, call number texts
  20. */1 * * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --granularity password-reset --run-pending
  21. */5 * * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --granularity sms-call-number --run-pending
  22. ## Overdue Notices
  23. 0 4 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --hooks=checkout.due --run-pending --granularity overdue-notices --granularity-only
  24. ## Account Notices - New users, account expiration warnings
  25. 30 4 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --hooks=au.created,au.expired --run-pending --granularity account-notices --granularity-only
  26. ## Holds Cancelled
  27. 0 5 * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --run-pending --granularity hold-cancelled --granularity-only
  28. ## Lost Notices
  29. 10 * * * * . /etc/profile && /openils/bin/action_trigger_runner.pl --osrf-config /openils/conf/opensrf_core.xml --process-hooks --hooks=checkout.due --run-pending --granularity lost-notices --granularity-only
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement