(1) regenerate leaner genfiles, we're not using the object manager functionality...
[systembsd.git] / src / main.c
CommitLineData
3b82e3c1 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
387173cb 17#include <gio/gio.h>
39df6847 18#include <glib.h>
19#include <glib/gprintf.h>
20#include <glib/gstdio.h>
5b005882 21
36575bff 22#include "config.c"
5b005882 23
b7f8df44 24#include "interfaces/hostnamed/hostnamed.c"
5b005882 25#include "interfaces/localed/localed.c"
26#include "interfaces/timedated/timedated.c"
27#include "interfaces/logind/logind.c"
496f5d66 28
39df6847 29gboolean systemd_utils_init() {
9fa42f1a 30 if(!config_init()) {
31 gchar *tmp;
32 tmp = "/etc/systemd_compat.conf";
33
5b005882 34 g_printf("FAILED to open config %s! did you `make install`?\n", tmp);
9fa42f1a 35 return FALSE;
36 }
9fa42f1a 37 return TRUE;
39df6847 38}
929eb2a9 39
39df6847 40int main() {
929eb2a9 41
1cd5e6fe 42 GMainLoop *mloop;
43
44 if(!systemd_utils_init()) {
45 g_printf("failed to init, are you root?\n");
a6f11205 46 return 1; /* TODO errno properly. grep for all "return 1;"s, not TODO'ing each one */
1cd5e6fe 47 }
39df6847 48
1cd5e6fe 49 hostnamed_init();
5b005882 50 localed_init();
39df6847 51
1cd5e6fe 52 mloop = g_main_loop_new(NULL, TRUE);
39df6847 53
1cd5e6fe 54 g_main_loop_run(mloop);
55 g_main_loop_unref(mloop);
1cd91c9c 56
1cd5e6fe 57 return 0;
ea207ed3 58}