home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # --------------------------------------------------------------------------
- # Copyright 1992 by Forschungszentrum Informatik (FZI)
- #
- # You can use and distribute this software under the terms of the licence
- # you should have received along with this program.
- # If not or if you want additional information, write to
- # Forschungszentrum Informatik, "STONE", Haid-und-Neu-Strasse 10-14,
- # D-7500 Karlsruhe 1, Germany.
- # --------------------------------------------------------------------------
- # 'sos-init - 06:03:91 - Dietmar Theobald'
- #
- # sos-init
- #
- # Cleans the container directory $SOSCONTAINER by removing all container and
- # running 'init'.
- #
- BINDIR=${SOSPATH-__SOS_INSTALLED_PATH__}/bin/
-
- cd ${SOSCONTAINER?}
-
- rm -f [0-9]*
- echo -n > 1
-
- ${BINDIR}init
-