[Libguestfs] [PATCH v2 2/2] customize: get zypper to eat licenses and gpg keys

Cédric Bosdonnat cbosdonnat at suse.com
Tue Sep 29 13:59:35 UTC 2015


Without these flags --install will most likely fail as the GPG key
may no be imported in the guest image.
---
 customize/customize_run.ml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index 9d97522..ad0ab7f 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -116,7 +116,7 @@ exec >>%s 2>&1
     | "yum" ->
       sprintf "yum -y install %s" quoted_args
     | "zypper" ->
-      sprintf "zypper -n in %s" quoted_args
+      sprintf "zypper -n --gpg-auto-import-keys in -l %s" quoted_args
     | "unknown" ->
       error (f_"--install is not supported for this guest operating system")
     | pm ->
@@ -143,7 +143,7 @@ exec >>%s 2>&1
     | "yum" ->
       sprintf "yum -y update"
     | "zypper" ->
-      sprintf "zypper update"
+      sprintf "zypper -n --gpg-auto-import-keys update -l"
     | "unknown" ->
       error (f_"--update is not supported for this guest operating system")
     | pm ->
-- 
2.1.4




More information about the Libguestfs mailing list