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

62f9b7
From 84cb43440a2ad143eb7474a028b1b1549cb8c0f1 Mon Sep 17 00:00:00 2001
62f9b7
From: "Richard W.M. Jones" <rjones@redhat.com>
62f9b7
Date: Fri, 12 Nov 2021 08:47:55 +0000
62f9b7
Subject: [PATCH] convert/convert_windows.ml: Handle date formats with dots
62f9b7
 instead of /
62f9b7
62f9b7
If the ShortDatePattern is yy.M.d (as can happen for US locale) we may
62f9b7
not always reformat the date for schtasks.exe correctly.  For
62f9b7
explanation and testing see:
62f9b7
62f9b7
https://bugzilla.redhat.com/show_bug.cgi?id=1895323#c46 (- #c50)
62f9b7
62f9b7
Thanks: Xiaodai Wang for suggesting the fix and testing it
62f9b7
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1895323
62f9b7
(cherry picked from commit d9dc6c42ae64ba92993dbd9477f003ba73fcfa2f)
62f9b7
---
62f9b7
 v2v/convert_windows.ml | 7 +++++--
62f9b7
 1 file changed, 5 insertions(+), 2 deletions(-)
62f9b7
62f9b7
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
62f9b7
index 13de10cb..6c7440aa 100644
62f9b7
--- a/v2v/convert_windows.ml
62f9b7
+++ b/v2v/convert_windows.ml
62f9b7
@@ -422,12 +422,15 @@ popd
62f9b7
  and configure_qemu_ga files =
62f9b7
    List.iter (
62f9b7
      fun msi_path ->
62f9b7
-       (* Windows is a trashfire. https://stackoverflow.com/a/18730884 *)
62f9b7
+       (* Windows is a trashfire.
62f9b7
+        * https://stackoverflow.com/a/18730884
62f9b7
+        * https://bugzilla.redhat.com/show_bug.cgi?id=1895323
62f9b7
+        *)
62f9b7
        let fb_script = sprintf "\
62f9b7
 echo Removing any previously scheduled qemu-ga installation
62f9b7
 schtasks.exe /Delete /TN Firstboot-qemu-ga /F
62f9b7
 echo Scheduling delayed installation of qemu-ga from %s
62f9b7
-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\\\"\"
62f9b7
+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\\\"\"
62f9b7
       "
62f9b7
       msi_path msi_path msi_path in
62f9b7
       Firstboot.add_firstboot_script g inspect.i_root