#! /bin/sh
#
# |-----------------------------------------------------------|
# | Copyright (c) 1991, 1990 MIPS Computer Systems, Inc.      |
# | All Rights Reserved                                       |
# |-----------------------------------------------------------|
# |          Restricted Rights Legend                         |
# | Use, duplication, or disclosure by the Government is      |
# | subject to restrictions as set forth in                   |
# | subparagraph (c)(1)(ii) of the Rights in Technical        |
# | Data and Computer Software Clause of DFARS 252.227-7013.  |
# |         MIPS Computer Systems, Inc.                       |
# |         950 DeGuigne Avenue                               |
# |         Sunnyvale, California 94088-3650, USA             |
# |-----------------------------------------------------------|
#
# $Header: set_kopts,v 1.3.2.1 92/06/24 13:35:04 marker Exp $
#
# Set kopt values
#

PATH=/bin:/etc:/usr/bin:/usr/etc:/usr/ucb:

case "$1" in
'start')
# all of these are optional.  The ones marked BSD43 should be
# enabled (0) to get more BSD 4.3 -like behavior. The ones marked 
# SVR4 should be disabled (-1) to get more SVR4-like behavior. 
# man 8 kopt to see more details on these, and for other settings
#BSD43	/etc/kopt set _posix_chown_restricted 0
#BSD43	/etc/kopt set _riscos_group_parent 0
#BSD43	/etc/kopt set _riscos_kill_stopped_orphans 0
#BSD43	/etc/kopt set _riscos_utime_owner 0
#SVR4 	/etc/kopt set _posix_chown_restricted -1
#SVR4 	/etc/kopt set _riscos_group_parent -1
#SVR4 	/etc/kopt set _riscos_kill_stopped_orphans -1
#SVR4 	/etc/kopt set _riscos_utime_owner -1
    ;;

'stop')
    ;;

*)
    echo "usage: /etc/init.d/set_kopts {start|stop}"
    ;;
esac
exit 0
