aboutsummaryrefslogtreecommitdiff
path: root/initd/main.c
blob: 446553ca66fbb02ba3ff4a2209603379af62d698 (plain)
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
39
40
41
42
/* SPDX-License-Identifier: ISC */
#include "init.h"

static void handle_signal(int signo)
{
	switch (signo) {
	case SIGTERM:
		supervisor_set_target(TGT_SHUTDOWN);
		break;
	case SIGINT:
		supervisor_set_target(TGT_REBOOT);
		break;
	case SIGHUP:
		break;
	case SIGUSR1:
		break;
	}
}

int main(void)
{
	struct sigaction act;

	supervisor_init();

	memset(&act, 0, sizeof(act));
	act.sa_handler = handle_signal;

	sigaction(SIGTERM, &act, NULL);
	sigaction(SIGINT, &act, NULL);
	sigaction(SIGHUP, &act, NULL);
	sigaction(SIGUSR1, &act, NULL);

	if (reboot(LINUX_REBOOT_CMD_CAD_OFF))
		perror("cannot disable CTRL+ALT+DEL");

	for (;;) {
		supervisor_process_queues();
	}

	return EXIT_SUCCESS;
}