Accepting request 335426 from home:cbosdonnat:branches:Virtualization

- Add password default encryption method for sles

Diff to v1:
  * Adapted the patch to what upstream actually pushed
  * Added a changelog entry

OBS-URL: https://build.opensuse.org/request/show/335426
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libguestfs?expand=0&rev=350
This commit is contained in:
Olaf Hering 2015-10-01 15:34:46 +00:00 committed by Git OBS Bridge
parent 0d2e107c89
commit c252001a3e
2 changed files with 7 additions and 2 deletions

View File

@ -157,8 +157,8 @@ Index: libguestfs-1.26.10/customize/password.ml
| "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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Oct 1 12:09:22 UTC 2015 - cbosdonnat@suse.com
- Add password default encryption method for sles
-------------------------------------------------------------------
Tue Sep 29 14:21:52 UTC 2015 - cbosdonnat@suse.com