Overview
Comment: | fix binary selection, stop when no binary, add idprio/rtprio |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
adf4eb9997ae3d4ef56cb3ad16eed785 |
User & Date: | arcade on 2023-11-04 08:49:10.039 |
Other Links: | manifest | tags |
Context
2023-11-04
| ||
08:49 | load pf module only once check-in: 202b534ed4 user: arcade tags: trunk | |
08:49 | fix binary selection, stop when no binary, add idprio/rtprio check-in: adf4eb9997 user: arcade tags: trunk | |
08:48 | fix tmpfs probing check-in: a0315ec3f2 user: arcade tags: trunk | |
Changes
Modified example.service_mk
from [8569a8e7e9]
to [97eba656ef].
︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | + + + + + + + - - + + | DAEMON_example_FLAGS?= # flags to prevent daemonizing DAEMON_example_FOREGROUND?= # group to run service as DAEMON_example_GROUP?=wheel # lower process priority by using `idprio` DAEMON_example_IDPRIO?= # kernel modules to load prior to service start DAEMON_example_MODULES?= # raise process priority by using `rtprio` # (IDPRIO setting takes precedence if set) DAEMON_example_RTPRIO?= # user to run service as DAEMON_example_USER?=root # extra commands to execute before starting service |
Modified starter.mk
from [435c42a9e4]
to [b2c2cec872].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - - - - + + + + + - - + + + + + + + + + + + + | OTHER_TARGETS+=_service_pre STARTER?=svc _service_check: .USEBEFORE # check whether service is enabled if [ -z "$${DAEMON_$@_ENABLE}" -a -z "${FORCE}" ]; then \ exit 0 ;\ |
︙ |