#!/bin/sh
if [ ! -e /etc/burnin_on ]
then
   exit
fi
if [ -x /etc/burnin.conf ]
then
	. /etc/burnin.conf
	if [ "$RUN_SETI" == "YES" ] 
	then
		/root/bin/setistatus >> /root/test/seti.history
	fi
fi	
