#!/bin/sh

# Send off onShore Timesheet nightly reports to supervisors through
# e-mail

[ -f /etc/onshore-timesheet.conf ] || exit 0
[ -x /usr/sbin/timesheet-daily-report ] || exit 0

su www-data -c /usr/sbin/timesheet-daily-report

exit 0
