#! /bin/sh # Copyright (c) 1996 S.u.S.E. GmbH Fuerth, Germany. All rights reserved. # # Author: Florian La Roche , 1996 # Werner Fink , 1996 # # /sbin/init.d/rpc # . /etc/rc.config test "$START_PORTMAP" = no -a "$NFS_SERVER" = no && exit 0 case "$1" in start) if test "$NFS_SERVER" = yes; then echo "Starting NFS server." test -x /usr/sbin/rpc.mountd && /usr/sbin/rpc.mountd test -x /usr/sbin/rpc.nfsd && /usr/sbin/rpc.nfsd fi ;; stop) if test "$NFS_SERVER" = yes; then echo -n "Shutting down NFS server:" killproc -TERM /usr/sbin/rpc.mountd killproc -TERM /usr/sbin/rpc.nfsd echo fi ;; *) echo "Usage: $0 {start|stop}" exit 1 esac exit 0