#!/bin/sh
#
# template script to be called from uback
# change any occurence of "{template} to your action name
#
# $Version$


if [ "x$1" = "x--help" ]; then
    echo "{template}: <no help available>"
    exit 1;
else
    . $1
fi

if [ "x$confdir" = "x" ]; then
    echo "Error: configfile \"$1\" missing or invalid!"
    exit 1;
else
    . $confdir/{template}
fi


etc=$base/etc
log=$base/log


trap 'echo "abort."; exit 127' 1 2 3 15
