#!/usr/bin/csh
set arch=IDSS*.Z
if (-e "$arch") then
  if (!(-e runserver)) then
    uncompress -c $arch | tar xf -
  endif
  ./runserver -init
else
  echo Error: Distribution archive \"IDSS\*.Z\" not found.
endif
