summaryrefslogtreecommitdiff
path: root/configmgr/source/components.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-01 18:55:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-01 18:58:20 +0200
commite96b8bd4d4fd4bce48bacf69bed5d5fe10237dec (patch)
tree780934114e46ed2e52061010ffc2bbde684f24c5 /configmgr/source/components.cxx
parent004ede28a23ab1326ba553e0bf358e98c19a53e8 (diff)
configmgr: support writing back to dconf (WIP)
Needs to be enabled manually for now by changing CONFIGURATION_LAYERS's tail from " user:..." to " user:*... dconf:!". Change-Id: I31cd806f21d2ded376832faf98f49167b7243d1c
Diffstat (limited to 'configmgr/source/components.cxx')
-rw-r--r--configmgr/source/components.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx
index 1b9066a45ee3..a51c5ac8515a 100644
--- a/configmgr/source/components.cxx
+++ b/configmgr/source/components.cxx
@@ -291,7 +291,9 @@ void Components::writeModifications() {
}
break;
case ModificationTarget::Dconf:
- //TODO
+#if ENABLE_DCONF
+ dconf::writeModifications(*this, data_);
+#endif
break;
}
}