mirror of
https://github.com/buildwithparallel/openwrt
synced 2026-08-10 21:35:45 -04:00
12 lines
89 B
Bash
Executable file
12 lines
89 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
START=80
|
|
|
|
start()
|
|
{
|
|
/sbin/mountd
|
|
}
|
|
|
|
stop()
|
|
{
|
|
killall mountd
|
|
}
|