Artifact f1289ad94a07a385ebc7f789f51957c6d92e52d7c592a0d6eaefafcf21eb6278:
- File svc.daemon — part of check-in [b9bb8f0f8e] at 2019-10-20 12:28:13 on branch trunk — add module loading (user: arcade, size: 495) [annotate] [blame] [check-ins using]
# 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