[libvirt] [jenkins-ci PATCH v2 6/9] lcitool: avoid installing recommended packages

Daniel P. Berrangé berrange at redhat.com
Tue Feb 5 17:53:03 UTC 2019


We know exactly which packages we need and don't want apt
picking extra "recommended" ones for us.

Signed-off-by: Daniel P. Berrangé <berrange at redhat.com>
---
 guests/lcitool | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guests/lcitool b/guests/lcitool
index 1d5cbd0..eb111b8 100755
--- a/guests/lcitool
+++ b/guests/lcitool
@@ -546,7 +546,7 @@ class Application:
                     ( \\
                         apt-get update && \\
                         apt-get dist-upgrade -y && \\
-                        apt-get install -y ${PACKAGES} && \\
+                        apt-get install --no-install-recommends -y ${PACKAGES} && \\
                         apt-get autoremove -y && \\
                         apt-get autoclean -y \\
                     )
-- 
2.20.1




More information about the libvir-list mailing list