7cb0448
From ef0797e5ed116a98cc074a6d4e1d1d6b6e6384db Mon Sep 17 00:00:00 2001
7cb0448
From: Stef Walter <stefw@redhat.com>
7cb0448
Date: Mon, 7 Sep 2015 12:53:02 +0200
7cb0448
Subject: [PATCH 1/2] service: Fix issue where diagnostics about package
7cb0448
 install hidden
7cb0448
7cb0448
Due to the recent refactoring the diagnostics about package
7cb0448
installation were hidden (even when --verbose).
7cb0448
7cb0448
https://bugzilla.redhat.com/show_bug.cgi?id=1258745
7cb0448
---
7cb0448
 service/realm-packages.c | 1 +
7cb0448
 1 file changed, 1 insertion(+)
7cb0448
7cb0448
diff --git a/service/realm-packages.c b/service/realm-packages.c
7cb0448
index 9da852c..321921a 100644
7cb0448
--- a/service/realm-packages.c
7cb0448
+++ b/service/realm-packages.c
7cb0448
@@ -615,6 +615,7 @@ realm_packages_install_async (const gchar **package_sets,
7cb0448
 	task = g_task_new (NULL, NULL, callback, user_data);
7cb0448
 	install = g_new0 (InstallClosure, 1);
7cb0448
 	install->automatic = realm_options_automatic_install ();
7cb0448
+	install->invocation = invocation ? g_object_ref (invocation) : NULL;
7cb0448
 	install->connection = g_object_ref (connection);
7cb0448
 	g_task_set_task_data (task, install, install_closure_free);
7cb0448
 
7cb0448
-- 
7cb0448
2.4.3
7cb0448