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