Displaying 5 results from an estimated 5 matches for "verstr".
Did you mean:
versor
2015 Jul 24
1
Re: [PATCH] customize: password: improve unknown default crypto message
...o g root =
> | "ubuntu", _ -> `MD5
>
> | _, _ ->
> - warning (f_"password: using insecure md5 password encryption for
> -guest of type %s version %d.\nIf this is incorrect, use --password-crypto option and file a bug.") distro major;
> + let verstr =
> + let minor = g#inspect_get_minor_version root in
> + match major, minor with
> + | x, _ when x > 0 -> string_of_int x
> + | 0, 0 -> "0"
> + | x, y -> "0." ^ string_of_int y in
> + warning (f_"password: using ins...
2015 Jul 24
3
[PATCH] customize: random_seed: add CirrOS location
CirrOS has its random-seed file in /etc.
---
customize/random_seed.ml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/customize/random_seed.ml b/customize/random_seed.ml
index 34a7af7..5a15ad9 100644
--- a/customize/random_seed.ml
+++ b/customize/random_seed.ml
@@ -30,6 +30,7 @@ let rec set_random_seed (g : Guestfs.guestfs) root =
"/var/lib/systemd/random-seed"; (* Fedora
2015 Jul 24
0
[PATCH] customize: password: improve unknown default crypto message
...6 +163,13 @@ and default_crypto g root =
| "ubuntu", _ -> `MD5
| _, _ ->
- warning (f_"password: using insecure md5 password encryption for
-guest of type %s version %d.\nIf this is incorrect, use --password-crypto option and file a bug.") distro major;
+ let verstr =
+ let minor = g#inspect_get_minor_version root in
+ match major, minor with
+ | x, _ when x > 0 -> string_of_int x
+ | 0, 0 -> "0"
+ | x, y -> "0." ^ string_of_int y in
+ warning (f_"password: using insecure md5 password encryption...
2020 Jul 18
25
[PATCH 00/12] Bunch of patches for cross-compilatio + RP4
Initially out there as #965245.
I strongly prefer to build ARM64 packages on non-ARM systems. Something
about my main build machine having twice the cores and twice the clock
speed. As such after many builds I've managed to generate a set of
patches which appear to mostly function to get functioning cross-builds
of Xen.
These are NOT a 100% solution. Some packaging hacks were needed. In
2013 Apr 26
0
Wine release 1.5.29
...annel.
d3dx9_36: Add a trailing '\n' to a TRACE().
Assorted spelling fixes.
Gurmail Bassi (2):
dinput: Update existing joystick values after setting the range property.
joy.cpl: Fixed incorrect variable reference.
Hans Leidekker (10):
msi: Don't overwrite verstr in set_installer_properties.
msi: Fix one more occurrence of overwriting verstr in set_installer_properties.
wininet/tests: Add tests for a prematurely closed connection.
wininet: Fix a request string leak.
wininet: Don't strip the port from URLs returned by InternetQuer...