1
2
3
4
5
6
7
8
9
10
11
12
13
|
DAEMON_mountd_COMMAND?=/sbin/mountd
DAEMON_mountd_ENABLE?=no
DAEMON_mountd_FLAGS?=-r
.if empty(DAEMON_mountd_ENABLE:tl:Mno)
DAEMON_rpcbind_ENABLE=yes
.endif
mountd: rpcbind NETWORK SERVERS _service # mountlate -> SERVERS
test -z "$${DAEMON_$@_ENABLE}" || { \
rm -f /var/db/mountdtab; \
( umask 022 ; touch /var/db/mountdtab ); \
}
|
|
<
|
|
>
|
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DAEMON_mountd_COMMAND?=/sbin/mountd
DAEMON_mountd_ENABLE?=no
DAEMON_mountd_FLAGS?=-r
.if empty(DAEMON_mountd_ENABLE:tl:Mno)
DAEMON_rpcbind_ENABLE=yes
.endif
mountd: rpcbind NETWORK SERVERS ${_SERVICE} # mountlate -> SERVERS
rm -f /var/db/mountdtab ;\
( umask 022; touch /var/db/mountdtab; ) ;\
:
mountd_exit: ${_SERVICE_EXIT} nfsd_exit
NETWORK_EXIT: mountd_exit
|