#! /sbin/sh
#/* Copyright 1994 The Stone + Wire Company. All Rights Reserved.
# * File:	S99s+w_init - initialization file
# * Author:	Chris Gindel
#

if [ -f /etc/swr-license ]
then
	if [ -x /etc/swr-set-license ]
	then
	/etc/swr-set-license
	else
	echo "ERROR: found S+W license file but couldn't find /etc/swr-set-license"
	fi	
fi

if [ -f /etc/swr-config ]
then
	if [ -x /etc/swr-set-config ]
	then
	/etc/swr-set-config
	else
	echo "ERROR: found swr-config file but couldn't find /etc/swr-set-config"
	fi
else
	echo "ERROR: couldn't find /etc/swr-config"
fi
