source: freewrt/package/nfs-server/files/nfsd.init@ 621d5d2

freewrt_2_0
Last change on this file since 621d5d2 was 4ed07d3, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

create needed directory, from aep via irc

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@2558 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 337 bytes
Line 
1#!/bin/sh
2
3. /etc/rc.conf
4
5case $1 in
6autostart)
7 test x"${nfsd:-NO}" = x"NO" && exit 0
8 exec $0 start
9 ;;
10start)
11 mkdir -p /var/lib/nfs
12 /usr/sbin/rpc.mountd -r
13 /usr/sbin/rpc.nfsd
14 ;;
15stop)
16 killall rpc.nfsd
17 killall rpc.mountd
18 ;;
19restart)
20 $0 stop
21 $0 start
22 ;;
23*)
24 echo "Usage: $0 {start | stop | restart}"
25 exit 1
26 ;;
27esac
28exit $?
Note: See TracBrowser for help on using the repository browser.