blob: e3784310e7bfeb63e3674b8eedb0bd3025bb76c3 (
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
33
34
35
36
37
38
|
#include <bus.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#define t(stmt) if (stmt) goto fail
static char arg[4098];
int
main(int argc, char *argv[])
{
bus_t bus;
int i;
if (argc < 2)
return fprintf(stderr, "USAGE: %s daemon...", *argv), 2;
t(bus_open(&bus, getenv("BUS_INIT"), BUS_WRONLY));
for (i = 1; i < argc; i++) {
sprintf(arg, "grep '^%s$' < \"${XDG_RUNTIME_DIR}/started-daemons\" >/dev/null", argv[i]);
if (WEXITSTATUS(system(arg))) {
sprintf(arg, "%ji require %s", (intmax_t)getppid(), argv[i]);
t(bus_write(&bus, arg, 0));
}
}
bus_close(&bus);
return 0;
fail:
perror("require");
bus_close(&bus);
return 1;
}
|