packages/net/unfs3/files/unfs3.init

18 lines
161 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=50
start() {
/usr/sbin/unfsd
}
stop() {
killall unfsd
}
restart() {
stop
sleep 1
start
}