#!/bin/sh 
# --------------------------------------------------------------------------
# Copyright 1992-1994 by Forschungszentrum Informatik (FZI)
# All rights reserved.
#
# You can use and distribute this software under the terms of the license
# you should have received along with this software; either version 1.1 of
# the license, or (at your option) any later version.
# For a copy of the license or for additional information about this software,
# write to Xcc Software, Durlacher Allee 53, D-76131 Karlsruhe, Germany;
# Email: obst@xcc-ka.de.
# --------------------------------------------------------------------------
# 'obst-init - 06:03:91 - Dietmar Theobald'
#
# obst-init
#
# Cleans the container directory by removing all containers and
# running 'init'.
#
self='obst-init'
[ -n "$OBSTdir" ] || { OBSTdir="`cd \`dirname $0\`;pwd`/"; export OBSTdir; }

if [ -n "$OBSTCONTAINER" ] ; then
  cd $OBSTCONTAINER
elif [ -n "$SOSCONTAINER" ] ; then
  cd $SOSCONTAINER
else
  echo >&2 "*** $self: environment variable OBSTCONTAINER not defined"
  exit 1
fi

rm -f [0-9]* version

${OBSTdir}init || { echo >&2 "*** $self: init failed"; exit 1; }

# create the $OBSTCONTAINER/version file if cfe is able to show its version
version="`${OBSTdir}cfe -v 2>&1`"

echo "$version" | grep -i -s version && echo "$version" > version

exit 0
