#!/sbin/sh
#
# Copyright (c) 1998 Phobos Corporation
#
# Initialization file for Phobos Corporation's PhobosLink software
#

case $1 in 
'start')
	if [ -f /etc/plink.conf ]
	then
		insmod p1000 1> /dev/null 2>&1
		insmod plink 1> /dev/null 2>&1
		/sbin/plconf
	fi
	;;
'stop')
	;;
esac
