From 63ba21d50692ae46b0fdd4fd320b34907634a4ec Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sat, 1 Jun 2019 16:19:55 -0400 Subject: [PATCH] pkgman: Inform the user when a reboot is required to complete installation. Fixes #14783 following on hrev53005. --- src/bin/pkgman/PackageManager.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/pkgman/PackageManager.cpp b/src/bin/pkgman/PackageManager.cpp index 35bd011415..ba2ffcaef4 100644 --- a/src/bin/pkgman/PackageManager.cpp +++ b/src/bin/pkgman/PackageManager.cpp @@ -322,6 +322,9 @@ void PackageManager::ProgressApplyingChangesDone(InstalledRepository& repository) { printf("[%s] Done.\n", repository.Name().String()); + + if (BPackageRoster().IsRebootNeeded()) + printf("A reboot is necessary to complete the installation process.\n"); }