Differences From
Artifact [bdcbd6ec22]:
1
2
3
4
5
6
7
8
9
10
11
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
+
+
+
+
+
+
|
# vim:ft=make:
_daemon: DAEMON .USE
.if empty(DAEMON_$@_ENABLE:tl:Mno)
.if !empty(DAEMON_$@_MODULES)
kldload -n ${DAEMON_$@_MODULES}
.endif
svc -u ${DAEMON_$@_USER:Uroot} -g ${DAEMON_$@_GROUP:Uwheel} init $@ ${DAEMON_$@_COMMAND} ${DAEMON_$@_FLAGS}
.endif
_service: .USE
.if empty(DAEMON_$@_ENABLE:tl:Mno)
.if !empty(DAEMON_$@_MODULES)
kldload -n ${DAEMON_$@_MODULES}
.endif
svc -u ${DAEMON_$@_USER:Uroot} -g ${DAEMON_$@_GROUP:Uwheel} init $@ ${DAEMON_$@_COMMAND} ${DAEMON_$@_FLAGS}
.endif
|