aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/daemon-dependencies/start-daemon.c
blob: 7c224d52606eecf90afe4ff9ad7b46084e4d22d7 (plain) (blame)
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
#include <bus.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#define t(stmt)  if (stmt) goto fail


static char arg[4098];


int
main(int argc, char *argv[])
{
	if (argc != 2)
		return fprintf(stderr, "This program should be called from ./init\n"), 2;

	sprintf(arg, "grep '^%s$' < \"${XDG_RUNTIME_DIR}/started-daemons\" >/dev/null", argv[1]);
	if (!WEXITSTATUS(system(arg)))
		return 0;
	sprintf(arg, "grep '^%s$' < \"${XDG_RUNTIME_DIR}/ready-daemons\" >/dev/null", argv[1]);
	if (!WEXITSTATUS(system(arg)))
		return 0;

	sprintf(arg, "./%s", argv[1]);
	execlp(arg, arg, NULL);
	perror("start-daemon");
	return 1;
}