see previous commit, forgot 'git add'..
[systembsd.git] / src / main.c
CommitLineData
baa40e28 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
08e17ea2 17/* debugging */
1c38000a 18#define INSTALL 1
11475670 19//#define NO_BUILTIN_XML 1
08e17ea2 20/* end debugging */
21
387173cb 22#include <gio/gio.h>
c3b84b0a 23#include <glib.h>
24#include <glib/gprintf.h>
25#include <glib/gstdio.h>
1c38000a 26#include "config.c"
b7f8df44 27#include "interfaces/hostnamed/hostnamed.c"
c3b84b0a 28//#include "main/h"
496f5d66 29
c3b84b0a 30gboolean systemd_utils_init() {
71e3eef1 31 #ifdef INSTALL
1c38000a 32 if(!config_init()) {
4241079f 33 gchar *tmp;
34 tmp = "/etc/"; //what the hell is /etc/xdg anyway
35
36 g_printf("FAILED to install configs in %s!\n", tmp);
37 return FALSE;
38 }
53f83ba5 39 if(!init_xml()) {
40 const gchar * const *tmp;
4241079f 41 tmp = g_get_system_data_dirs();
42
43 g_printf("FAILED to install xml configs in %s!\n", tmp[0]);
44 return FALSE;
53f83ba5 45 }
71e3eef1 46 #endif
c3b84b0a 47 return TRUE;
48}
08e17ea2 49
c3b84b0a 50int main() {
08e17ea2 51
fbc0295f 52 GMainLoop *mloop;
53
54 if(!systemd_utils_init()) {
55 g_printf("failed to init, are you root?\n");
56 return 1; //TODO errno properly. grep for all "return 1;"s, not TODO'ing each one
57 }
c3b84b0a 58
fbc0295f 59 hostnamed_init();
c3b84b0a 60
fbc0295f 61 mloop = g_main_loop_new(NULL, TRUE);
c3b84b0a 62
fbc0295f 63 g_main_loop_run(mloop);
64 g_main_loop_unref(mloop);
e8c57a5d 65
fbc0295f 66 return 0;
ea207ed3 67}