diff options
author | kremlin- <ian@kremlin.cc> | 2014-06-20 10:38:50 +0800 |
---|---|---|
committer | kremlin- <ian@kremlin.cc> | 2014-06-20 10:38:50 +0800 |
commit | c3b84b0abed4c48ab8ff036081f43a523009c8a9 (patch) | |
tree | c4e9efa3721e25b50c90b552dca1be0c4842a5a1 /src/config.c | |
parent | ed99526e49fd73d24f479b3d2998db4ec6cbaffb (diff) | |
download | systembsd-c3b84b0abed4c48ab8ff036081f43a523009c8a9.tar systembsd-c3b84b0abed4c48ab8ff036081f43a523009c8a9.tar.gz systembsd-c3b84b0abed4c48ab8ff036081f43a523009c8a9.tar.bz2 systembsd-c3b84b0abed4c48ab8ff036081f43a523009c8a9.tar.lz systembsd-c3b84b0abed4c48ab8ff036081f43a523009c8a9.tar.xz systembsd-c3b84b0abed4c48ab8ff036081f43a523009c8a9.tar.zst systembsd-c3b84b0abed4c48ab8ff036081f43a523009c8a9.zip |
finish migrating old code to work with gdbus-codegen types, cleaned up config IO/install, cleaned up code all-around to work with strict compiler flags
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 83 |
1 files changed, 50 insertions, 33 deletions
diff --git a/src/config.c b/src/config.c index 189eb23..5d85346 100644 --- a/src/config.c +++ b/src/config.c @@ -34,45 +34,62 @@ gboolean set_option(gchar *key, gchar *value, gchar *group) { } /* initial load/check */ - gboolean config_init() { - static gchar *config_path; - int tryopen = 0; - /* config is already good to go */ if(config) + return TRUE; //already init'd + + config = g_key_file_new(); + + const gchar *config_path; + GStatBuf *config_lstat; + + config_path = "/etc/systemd_compat.conf"; + + /* does conf exist? */ + if(g_lstat(config_path, config_lstat)) { + + /* if not, can we write it */ + if(g_access("/etc/", W_OK)) { + g_printf("%s\n", "no write permissions for /etc/! exiting.."); + return FALSE; + } + + int config_descr; + config_descr = g_open(config_path, O_CREAT, 644); + + gchar *posix_hostname; + posix_hostname = g_malloc(255); + + gethostname(posix_hostname, 255); + + g_key_file_set_string(config, "hostnamed", "Hostname", posix_hostname); + g_key_file_set_string(config, "hostnamed", "PrettyHostname", ""); + g_key_file_set_string(config, "hostnamed", "IconName", "Computer"); + g_key_file_set_string(config, "hostnamed", "ChassisType", "laptop"); //TODO set these correctly + + if(!g_key_file_save_to_file(config, config_path, NULL)) { + g_printf("failed to write config to %s!\n", config_path); + g_free(posix_hostname); + return FALSE; + } + + g_printf("wrote config to %s\n", config_path); + + g_free(posix_hostname); + return TRUE; - /* does config file exist? if not, write one */ - else if(!g_key_file_load_from_data(config, "systemd_compat.conf", &config_path, G_KEY_FILE_KEEP_COMMENTS, NULL)) { - - tryopen = g_open("/etc/systemd_compat.conf", O_CREAT, 644); - - //TODO clean this up, use g_data_dirs and g_exit - /* can we open it rw? */ - if(!g_access("/etc/systemd_compat.conf", W_OK) && !tryopen) { - g_printf("%s\n", "ERROR: cannot open systemd_compat.conf as read/write!"); - return FALSE; - } - - if(tryopen) { - config_path = "/etc/systemd_compat.conf"; - g_close(tryopen, NULL); - } - - //TODO set these properly - config = g_key_file_new(); - - g_key_file_set_string(config, "hostnamed", "PrettyHostname", ""); - g_key_file_set_string(config, "hostnamed", "IconName", "Computer"); - g_key_file_set_string(config, "hostnamed", "ChassisType", "laptop"); - - if(!g_key_file_save_to_file(config, config_path, NULL)) - return FALSE; + /* it does exist, read it */ + } else { + if(!g_access(config_path, W_OK)) { + g_printf("%s\n", "no write permissions for /etc/! exiting.."); + return FALSE; + } else if(g_key_file_load_from_file(config, config_path, G_KEY_FILE_KEEP_COMMENTS, NULL)) return TRUE; - /* it does it exist and was written to config var */ - } else - return TRUE; + g_printf("could not read config at %s! exiting..", config_path); + return FALSE; + } } |