1#!/bin/bash
2
3# Start the scheduler
4
5# Don't use exec as we want to chain run the sleep command
6# (and sendmail perhaps) so the docker auto restart will give us some time
7# before rebooting
8
9${CHART_LAUNCHER_NAME} scheduler \
10 --rotating-log-file ${CHART_LOG_DIR}/scheduler.log \
11 ; sleep 3600
12 # && sendmail ${CHART_ADMIN} < crash_email_message \