#! /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) echo "Starting RPC portmap daemon." /usr/sbin/portmap /bin/sleep 1 ;; stop) echo -n "Shutting down RPC services:" killproc -TERM /usr/sbin/portmap echo ;; *) echo "Usage: $0 {start|stop}" exit 1 esac exit 0