#!/bin/bash

# This short script is used to manage the background processing of images

# Status file on last image 

date > /usr/local/observatory/status/ccdlastimage

# Flag for ccd_monitor.sh that a new image exists

touch /usr/local/observatory/status/ccdnewimage

# The actual work on the image is done in background by ccd_monitor.sh

exit

