]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/initscripts/packages/rpcbind
rpcbind: Update initscript for moved binary
[people/pmueller/ipfire-2.x.git] / src / initscripts / packages / rpcbind
CommitLineData
e93a0b06
JS
1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/rpcbind
4#
5# Description : rpcbind init script
6#
7# Authors : Jonatan Schlag jonatan.schlag@ipfire.org
8#
9# Version : 01.00
10#
11# Notes :
12#
13########################################################################
14
15. /etc/sysconfig/rc
16. $rc_functions
17
18case "$1" in
19 start)
20 boot_mesg "Starting rpcbind"
cea9d7b3 21 loadproc /usr/sbin/rpcbind
e93a0b06
JS
22 ;;
23
24 stop)
25 boot_mesg "Stopping rpcbind"
cea9d7b3 26 killproc /usr/sbin/rpcbind
e93a0b06
JS
27 ;;
28
29 restart)
30 $0 stop
31 sleep 1
32 $0 start
33 ;;
34
35 status)
cea9d7b3 36 statusproc /usr/sbin/rpcbind
e93a0b06
JS
37 ;;
38
39 *)
40 echo "Usage: $0 {start|stop|restart|status}"
41 exit 1
42 ;;
43
44esac
45
46# End $rc_base/init.d/rpcbind