#!/bin/sh

#	PC-Interface
#	Copyright 1991  Locus Computing Corporation
#	@(#)S95pci	1.2	5/15/91	16:55:29

exit 0     # This prevents the startup of the PC-Interface daemons

case "$1" in

'start')
	[ -x /usr/pci/bin/pcistart ] && /usr/pci/bin/pcistart
	;;

'stop')
	[ -x /usr/pci/bin/pcistop ] && /bin/su root -c /usr/pci/bin/pcistop
	;;

esac
