Artifact [97eba656ef]
Logged in as anonymous

Artifact 97eba656ef84904114bc273f97bd6d90f1473e1e79f2d2c499f1d0666a6b5de1:


# vim:ft=make:

# flags to force daemonizing
DAEMON_example_BACKGROUND?=

# default working directory
DAEMON_example_CWD?=/some/path

# command to start service, first present executable is used
DAEMON_example_COMMAND?=/path/service /path/other/service

# enabled by default?
DAEMON_example_ENABLE?=no

# general service flags
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
# ${_EARLYSERVICE} - starts after root mount appear
# ${_SERVICE} - not required on early boot
# you also can select specific starter by inheriting class by full name:
# ${_(EARLY)?SERVICE(_(SVC|DAEMON|PLAIN))?}

example: ${_EARLYSERVICE}
	: run commands that should go before the service start