summaryrefslogtreecommitdiff
path: root/daemon/main.c
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@oracle.com>2012-06-25 12:12:03 -0400
committerRay Strode <rstrode@redhat.com>2012-06-25 12:16:48 -0400
commitd4fafda602937fdb13d28a710eab997ff7262251 (patch)
treefeb8e147ace830ed6828c12ce27a07d6942f983d /daemon/main.c
parente4a718fefd620fb3d80f0fba6f7faecd435ea89d (diff)
downloadgdm-d4fafda602937fdb13d28a710eab997ff7262251.tar.gz
daemon: reload config on SIGHUP
Diffstat (limited to 'daemon/main.c')
-rw-r--r--daemon/main.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/daemon/main.c b/daemon/main.c
index 2ffb779c..cba7cc29 100644
--- a/daemon/main.c
+++ b/daemon/main.c
@@ -471,9 +471,17 @@ signal_cb (int signo,
case SIGHUP:
g_debug ("Got HUP signal");
- /* FIXME:
- * Reread config stuff like system config files, VPN service files, etc
+ /* Reread config stuff like system config files, VPN service
+ * files, etc
*/
+ g_object_unref (settings);
+ settings = gdm_settings_new ();
+ if (settings != NULL) {
+ if (! gdm_settings_direct_init (settings, GDMCONFDIR "/gdm.schemas", "/")) {
+ g_warning ("Unable to initialize settings");
+ }
+ }
+
ret = TRUE;
break;