Blame SOURCES/0045-convert-convert_windows.ml-Handle-date-formats-with-.patch

446330
From 84cb43440a2ad143eb7474a028b1b1549cb8c0f1 Mon Sep 17 00:00:00 2001
446330
From: "Richard W.M. Jones" <rjones@redhat.com>
446330
Date: Fri, 12 Nov 2021 08:47:55 +0000
446330
Subject: [PATCH] convert/convert_windows.ml: Handle date formats with dots
446330
 instead of /
446330
446330
If the ShortDatePattern is yy.M.d (as can happen for US locale) we may
446330
not always reformat the date for schtasks.exe correctly.  For
446330
explanation and testing see:
446330
446330
https://bugzilla.redhat.com/show_bug.cgi?id=1895323#c46 (- #c50)
446330
446330
Thanks: Xiaodai Wang for suggesting the fix and testing it
446330
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1895323
446330
(cherry picked from commit d9dc6c42ae64ba92993dbd9477f003ba73fcfa2f)
446330
---
446330
 v2v/convert_windows.ml | 7 +++++--
446330
 1 file changed, 5 insertions(+), 2 deletions(-)
446330
446330
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
446330
index 13de10cb..6c7440aa 100644
446330
--- a/v2v/convert_windows.ml
446330
+++ b/v2v/convert_windows.ml
446330
@@ -422,12 +422,15 @@ popd
446330
  and configure_qemu_ga files =
446330
    List.iter (
446330
      fun msi_path ->
446330
-       (* Windows is a trashfire. https://stackoverflow.com/a/18730884 *)
446330
+       (* Windows is a trashfire.
446330
+        * https://stackoverflow.com/a/18730884
446330
+        * https://bugzilla.redhat.com/show_bug.cgi?id=1895323
446330
+        *)
446330
        let fb_script = sprintf "\
446330
 echo Removing any previously scheduled qemu-ga installation
446330
 schtasks.exe /Delete /TN Firstboot-qemu-ga /F
446330
 echo Scheduling delayed installation of qemu-ga from %s
446330
-powershell.exe -command \"$d = (get-date).AddSeconds(120); $FormatHack = ($([System.Globalization.DateTimeFormatInfo]::CurrentInfo.ShortDatePattern) -replace 'M+/', 'MM/') -replace 'd+/', 'dd/'; schtasks.exe /Create /SC ONCE /ST $d.ToString('HH:mm') /SD $d.ToString($FormatHack) /RU SYSTEM /TN Firstboot-qemu-ga /TR \\\"C:\\%s /forcerestart /qn /l+*vx C:\\%s.log\\\"\"
446330
+powershell.exe -command \"$d = (get-date).AddSeconds(120); $FormatHack = (($([System.Globalization.DateTimeFormatInfo]::CurrentInfo.ShortDatePattern) -replace 'y+', 'yyyy') -replace 'M+', 'MM') -replace 'd+', 'dd'; schtasks.exe /Create /SC ONCE /ST $d.ToString('HH:mm') /SD $d.ToString($FormatHack) /RU SYSTEM /TN Firstboot-qemu-ga /TR \\\"C:\\%s /forcerestart /qn /l+*vx C:\\%s.log\\\"\"
446330
       "
446330
       msi_path msi_path msi_path in
446330
       Firstboot.add_firstboot_script g inspect.i_root
446330
-- 
e21fe6
2.31.1
446330