[gnome-software] rpmostree: Add a client ID
- From: Kalev Lember <klember src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software] rpmostree: Add a client ID
- Date: Thu, 17 May 2018 06:22:36 +0000 (UTC)
commit 4447b4a47998184486f7b44774f08c2dcfe725d2
Author: Colin Walters <walters verbum org>
Date: Wed May 16 12:56:35 2018 +0000
rpmostree: Add a client ID
See: https://github.com/projectatomic/rpm-ostree/pull/1368
This will help users understand what software initiated updates.
plugins/rpm-ostree/gs-plugin-rpm-ostree.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
---
diff --git a/plugins/rpm-ostree/gs-plugin-rpm-ostree.c b/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
index 2e8bda94..5049e558 100644
--- a/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
+++ b/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
@@ -30,6 +30,11 @@
#include "gs-rpmostree-generated.h"
+/* This shows up in the `rpm-ostree status` as the software that
+ * initiated the update.
+ */
+#define GS_RPMOSTREE_CLIENT_ID PACKAGE_NAME
+
struct GsPluginData {
GsRPMOSTreeOS *os_proxy;
GsRPMOSTreeSysroot *sysroot_proxy;
@@ -85,6 +90,7 @@ gboolean
gs_plugin_setup (GsPlugin *plugin, GCancellable *cancellable, GError **error)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
+ g_autoptr(GVariantBuilder) options_builder = NULL;
/* Create a proxy for sysroot */
if (priv->sysroot_proxy == NULL) {
@@ -127,9 +133,12 @@ gs_plugin_setup (GsPlugin *plugin, GCancellable *cancellable, GError **error)
}
}
+ options_builder = g_variant_builder_new (G_VARIANT_TYPE ("a{sv}"));
+ g_variant_builder_add (options_builder, "{sv}", "id",
+ g_variant_new_string (GS_RPMOSTREE_CLIENT_ID));
/* Register as a client so that the rpm-ostree daemon doesn't exit */
if (!gs_rpmostree_sysroot_call_register_client_sync (priv->sysroot_proxy,
- g_variant_new ("a{sv}", NULL),
+ g_variant_new ("a{sv}", g_variant_builder_end
(options_builder)),
cancellable,
error)) {
gs_utils_error_convert_gio (error);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]