1
0
This repository has been archived on 2025-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
openwrt_archive/net/nfs-server/files/nfsd.init

16 lines
250 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=50
STOP=50
start() {
service_start /usr/sbin/rpc.mountd -r
service_start /usr/sbin/rpc.nfsd
}
stop() {
service_stop /usr/sbin/rpc.nfsd
service_stop /usr/sbin/rpc.mountd -r
}