#!/bin/sh
SCRIPT=/usr/bin/send-reminders

if [ -e "$SCRIPT" -a -x "$SCRIPT" ]; then
	$SCRIPT
else
	echo "$SCRIPT not found."
	exit 1;
fi
