1d8f78b5b62959fedd4ae029ef5161bdaee6c7d1
[systembsd.git] / src / main.c
1 /*
2 * Copyright (c) 2014 Ian Sutton <ian@kremlin.cc>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17 #include <gio/gio.h>
18 #include <glib.h>
19 #include <glib/gprintf.h>
20 #include <glib/gstdio.h>
21
22 #include "config.c"
23
24 gboolean systemd_utils_init() {
25
26 if(!config_init()) {
27
28 g_printf("FAILED to open config /etc/systemd_compat.conf! did you `make install`?\n", tmp);
29 return FALSE;
30 }
31
32 return TRUE;
33 }
34
35 int main() {
36
37 GMainLoop *mloop;
38 mloop = g_main_loop_new(NULL, TRUE);
39
40 if(!systemd_utils_init()) {
41 g_printf("failed to init, are you root?\n");
42 return 1; /* TODO errno properly. grep for all "return 1;"s, not TODO'ing each one */
43 }
44
45 gboolean hostnamed_init_ok, localed_init_ok;
46 GPid *hostnamed_pid, *localed_pid;
47 gchar *hostnamed_argv[0], *localed_argv[0];
48 GSource *hostnamed_source, *localed_source, *timedated_source, *logind_source;
49
50 hostnamed_argv[0] = "/usr/local/libexec/systemd-hostnamed-handler";
51 localed_argv[0] = "/usr/local/libexec/systemd-localed-handler";
52
53 g_main_loop_run(mloop);
54 g_main_loop_unref(mloop);
55
56 return 0;
57 }