]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/initscripts/packages/rpcbind
update Tor to 0.3.5.8
[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"
21 loadproc /sbin/rpcbind
22 ;;
23
24 stop)
25 boot_mesg "Stopping rpcbind"
26 killproc /sbin/rpcbind
27 ;;
28
29 restart)
30 $0 stop
31 sleep 1
32 $0 start
33 ;;
34
35 status)
36 statusproc /sbin/rpcbind
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