#!/bin/csh -f
if (! -f $sp_conf) then
    echo "Config file not found - please run initial setup"
    goto exit
else
    source $util_proc/util_sp_get_conf
endif

echo ""
echo "Configuration summary:"
echo "----------------------"
echo "FTP server:                $ftp_server"
echo "FTP user:                  $ftp_user"
echo "Language:                  $language"
echo "Service pack download dir: $sp_dir"
echo "Customer code:             $cust_code"
echo "Notification address:      $cust_mail"
echo ""

exit:

echo "Press <Enter> to continue"
set ans="$<"



