12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #!/bin/sh
- ########################################################################
- # Begin rpcbind
- #
- # Description : Start rpcbind daemon
- #
- # Author : Ken Moffat - ken@linuxfromscratch.org, based on portmap
- # script by Bruce Dubbs
- #
- # Version : LFS 7.0
- #
- ########################################################################
- ### BEGIN INIT INFO
- # Provides: rpcbind $portmap
- # Required-Start: $network
- # Should-Start:
- # Required-Stop: $network
- # Should-Stop:
- # Default-Start: 3 4 5
- # Default-Stop: 0 1 2 6
- # Short-Description: Starts the rpcbind daemon.
- # Description: Starts the rpcbind daemon to convert RPC program numbers
- # into DARPA protocol port numbers. It must be running in
- # order to make RPC# calls. Replaces portmap, which does
- # not work with libtirpc.
- # X-LFS-Provided-By: BLFS / LFS 7.0
- ### END INIT INFO
- . /etc/rc.d/functions
- #$LastChangedBy: dj $
- #$Date: 2011-12-05 01:38:40 -0600 (Mon, 05 Dec 2011) $
- case "$1" in
- start)
- log_info_msg "Starting rpcbind"
- start_daemon /sbin/rpcbind
- evaluate_retval
- ;;
- stop)
- log_info_msg "Stopping rpcbind"
- killproc /sbin/rpcbind
- evaluate_retval
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- status)
- statusproc /sbin/rpcbind
- ;;
- *)
- echo "Usage: $0 {start|stop|restart|status}"
- exit 1
- ;;
- esac
- # End /etc/init.d/rpcbind
|