Overview
Comment: | add module loading |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b9bb8f0f8edcdc16d764c758e3286578 |
User & Date: | arcade on 2019-10-20 12:28:13.833 |
Other Links: | manifest | tags |
Context
2019-10-20
| ||
12:28 | add automountd check-in: c7728de200 user: arcade tags: trunk | |
12:28 | add module loading check-in: b9bb8f0f8e user: arcade tags: trunk | |
12:27 | fix test and prevent service start check-in: b4e23b21af user: arcade tags: trunk | |
Changes
Modified svc.daemon
from [bdcbd6ec22]
to [f1289ad94a].
1 2 3 4 5 6 7 8 9 10 11 | # vim:ft=make: _daemon: DAEMON .USE .if empty(DAEMON_$@_ENABLE:tl:Mno) svc -u ${DAEMON_$@_USER:Uroot} -g ${DAEMON_$@_GROUP:Uwheel} init $@ ${DAEMON_$@_COMMAND} ${DAEMON_$@_FLAGS} .endif _service: .USE .if empty(DAEMON_$@_ENABLE:tl:Mno) svc -u ${DAEMON_$@_USER:Uroot} -g ${DAEMON_$@_GROUP:Uwheel} init $@ ${DAEMON_$@_COMMAND} ${DAEMON_$@_FLAGS} .endif | > > > > > > | 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 |