Hello community, here is the log from the commit of package libguestfs for openSUSE:Factory checked in at 2015-10-06 13:25:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libguestfs (Old) and /work/SRC/openSUSE:Factory/.libguestfs.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libguestfs" Changes: -------- --- /work/SRC/openSUSE:Factory/libguestfs/libguestfs.changes 2015-09-24 06:16:02.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.libguestfs.new/libguestfs.changes 2015-10-06 13:26:00.000000000 +0200 @@ -1,0 +2,10 @@ +Thu Oct 1 12:09:22 UTC 2015 - [email protected] + +- Add password default encryption method for sles. fate#318952 + +------------------------------------------------------------------- +Tue Sep 29 14:21:52 UTC 2015 - [email protected] + +- Add -l to zypper for install and update. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ 0000-hotfix.patch ++++++ --- /var/tmp/diff_new_pack.X8uDLH/_old 2015-10-06 13:26:01.000000000 +0200 +++ /var/tmp/diff_new_pack.X8uDLH/_new 2015-10-06 13:26:01.000000000 +0200 @@ -42,10 +42,19 @@ | "zypper" -> - (* XXX Should we use -n option? *) - sprintf "zypper in %s" quoted_args -+ sprintf "zypper -n in %s" quoted_args ++ sprintf "zypper -n in -l %s" quoted_args | "unknown" -> eprintf (f_"%s: --install is not supported for this guest operating system\n") prog; +@@ -135,7 +136,7 @@ exec >>%s 2>&1 + | "yum" -> + sprintf "yum -y update" + | "zypper" -> +- sprintf "zypper update" ++ sprintf "zypper -n update -l" + | "unknown" -> + eprintf (f_"%s: --update is not supported for this guest operating system\n") + prog; Index: libguestfs-1.26.10/builder/downloader.ml =================================================================== --- libguestfs-1.26.10.orig/builder/downloader.ml @@ -148,8 +157,8 @@ | "ubuntu", v when v >= 10 -> `SHA512 | "ubuntu", _ -> `MD5 -+ | "opensuse", v when v >= 11 -> `SHA512 -+ | "opensuse", _ -> `MD5 ++ | ("opensuse"|"sles"), v when v >= 11 -> `SHA512 ++ | ("opensuse"|"sles"), _ -> `MD5 + | _, _ -> warning ~prog (f_"password: using insecure md5 password encryption for
