1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# vim:ft=make:
# flags to force daemonizing
DAEMON_example_BACKGROUND?=
# default working directory
DAEMON_example_CWD?=/some/path
# command to start service
DAEMON_example_COMMAND?=/path/service
# enabled by default?
DAEMON_example_ENABLE?=no
# general service flags
DAEMON_example_FLAGS?=
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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?=
|