merge license, hostname buffer changes from master branch
[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 /* debugging */
18 #define INSTALL 1
19 //#define NO_BUILTIN_XML 1
20 /* end debugging */
21
22 #include <gio/gio.h>
23 #include <glib.h>
24 #include <glib/gprintf.h>
25 #include <glib/gstdio.h>
26 #include "config.c"
27 #include "interfaces/hostnamed/hostnamed.c"
28 //#include "main/h"
29
30 gboolean systemd_utils_init() {
31 <<<<<<< HEAD
32 #ifdef INSTALL
33 if(!config_init()) {
34 gchar *tmp;
35 tmp = "/etc/"; //what the hell is /etc/xdg anyway
36
37 g_printf("FAILED to install configs in %s!\n", tmp);
38 return FALSE;
39 }
40 if(!init_xml()) {
41 gchar **tmp;
42 tmp = g_get_system_data_dirs();
43
44 g_printf("FAILED to install xml configs in %s!\n", tmp[0]);
45 return FALSE;
46 }
47 #endif
48 return TRUE;
49 =======
50 #ifdef INSTALL
51 if(!config_init()) {
52 g_printf("%s\n", "FAILED to install configs in /etc/!");
53 return FALSE;
54 }
55 #endif
56 return TRUE;
57 >>>>>>> master
58 }
59
60 int main() {
61
62 GMainLoop *mloop;
63
64 if(!systemd_utils_init()) {
65 g_printf("failed to init, are you root?\n");
66 return 1; //TODO errno properly. grep for all "return 1;"s, not TODO'ing each one
67 }
68
69 hostnamed_init();
70
71 mloop = g_main_loop_new(NULL, TRUE);
72
73 g_main_loop_run(mloop);
74 g_main_loop_unref(mloop);
75
76 return 0;
77 }