#!/bin/sh
#
# template: your own BB external script
#
# version 1.0
#
# BIG BROTHER / XXXXXXXXXXXXXXXX status
#
# My Name here
# The date here
#
# The template script has whatever copyright you want
# Do whatever you want with it
# I take no responsability for it, use at your own risks

########################################
# NOTE
# This has been tested with BB 1.2b
########################################

########################################
# INSTALLATION
#  step 1
#  step 2
#  ...
########################################

##################################
# CONFIGURE IT HERE
##################################

##################################
# Start of script
##################################

if test ! "$BBHOME"
then
	echo "template: BBHOME is not set"
	exit 1
fi

if test ! -d "$BBHOME"
then
	echo "template: BBHOME is invalid"
	exit 1
fi

if test ! "$BBTMP"                      # GET DEFINITIONS IF NEEDED
then
	echo "templage: The BB environment is not set"
	exit 1
fi


##############################################
# end of script
##############################################
