mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-11 21:04:19 +02:00
22 lines
323 B
Bash
22 lines
323 B
Bash
#!/sbin/openrc-run
|
|
|
|
depend() {
|
|
config /etc/exports
|
|
use net
|
|
after firewall
|
|
need portmap
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting unfs3"
|
|
start-stop-daemon --start --quiet --exec /usr/sbin/unfsd \
|
|
-- ${UNFSD_OPTS}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping unfs3"
|
|
start-stop-daemon --stop --quiet --exec /usr/sbin/unfsd
|
|
eend $?
|
|
}
|
|
|