remove -pedantic, screw that
[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>
36575bff 21#include "config.c"
b7f8df44 22#include "interfaces/hostnamed/hostnamed.c"
496f5d66 23
39df6847 24gboolean systemd_utils_init() {
661659c9 25 if(!config_init()) {
26 gchar *tmp;
27 tmp = "/etc/systemd_compat.conf";
28
29 g_printf("FAILED to open config %s!\n", tmp);
30 return FALSE;
31 }
32 /*if(!init_xml()) {
33 const gchar * const *tmp;
34 tmp = g_get_system_data_dirs();
35
36 g_printf("FAILED to install xml configs in %s!\n", tmp[0]);
37 return FALSE;
38 }*/
39df6847 39 return TRUE;
40}
929eb2a9 41
39df6847 42int main() {
929eb2a9 43
1cd5e6fe 44 GMainLoop *mloop;
45
46 if(!systemd_utils_init()) {
47 g_printf("failed to init, are you root?\n");
48 return 1; //TODO errno properly. grep for all "return 1;"s, not TODO'ing each one
49 }
39df6847 50
1cd5e6fe 51 hostnamed_init();
39df6847 52
1cd5e6fe 53 mloop = g_main_loop_new(NULL, TRUE);
39df6847 54
1cd5e6fe 55 g_main_loop_run(mloop);
56 g_main_loop_unref(mloop);
1cd91c9c 57
1cd5e6fe 58 return 0;
ea207ed3 59}