New upstream version 1.52.2
authorHilko Bengen <bengen@debian.org>
Fri, 4 Oct 2024 08:48:44 +0000 (10:48 +0200)
committerHilko Bengen <bengen@debian.org>
Fri, 4 Oct 2024 08:48:44 +0000 (10:48 +0200)
46 files changed:
bugs-in-changelog.sh
common/mlcustomize/firstboot.ml
common/mlcustomize/firstboot.mli
common/mlcustomize/inject_virtio_win.ml
common/mldrivers/linux_kernels.ml
configure
configure.ac
po-docs/ja/virt-alignment-scan.1
po-docs/ja/virt-builder.1
po-docs/ja/virt-cat.1
po-docs/ja/virt-customize.1
po-docs/ja/virt-df.1
po-docs/ja/virt-diff.1
po-docs/ja/virt-edit.1
po-docs/ja/virt-filesystems.1
po-docs/ja/virt-format.1
po-docs/ja/virt-get-kernel.1
po-docs/ja/virt-index-validate.1
po-docs/ja/virt-inspector.1
po-docs/ja/virt-log.1
po-docs/ja/virt-ls.1
po-docs/ja/virt-make-fs.1
po-docs/ja/virt-resize.1
po-docs/ja/virt-sparsify.1
po-docs/ja/virt-sysprep.1
po-docs/ja/virt-win-reg.1
po-docs/uk/virt-alignment-scan.1
po-docs/uk/virt-builder.1
po-docs/uk/virt-cat.1
po-docs/uk/virt-customize.1
po-docs/uk/virt-df.1
po-docs/uk/virt-diff.1
po-docs/uk/virt-edit.1
po-docs/uk/virt-filesystems.1
po-docs/uk/virt-format.1
po-docs/uk/virt-get-kernel.1
po-docs/uk/virt-index-validate.1
po-docs/uk/virt-inspector.1
po-docs/uk/virt-log.1
po-docs/uk/virt-ls.1
po-docs/uk/virt-make-fs.1
po-docs/uk/virt-resize.1
po-docs/uk/virt-sparsify.1
po-docs/uk/virt-sysprep.1
po-docs/uk/virt-win-reg.1
po/guestfs-tools.pot

index 3f057a402c293761bae0c3a1b4327a156746991c..680be8482555f7f486edabdc5dbf1f419a9df2c0 100755 (executable)
@@ -56,3 +56,31 @@ bugzilla \
         sprintf ("=item L<https://bugzilla.redhat.com/%s>\n\n%s\n",
                  $1, $2)
         }xe'
+
+# We can't fetch Jira subjects or github issues, but we can at least
+# list them.
+jiraids=$(
+    git log "$1" |
+    grep -Eio 'RHEL-[0-9]+' |
+    sort -u
+)
+
+for id in $jiraids ; do
+    echo "=item L<https://issues.redhat.com/browse/$id>"
+    echo
+    echo "XXX"
+    echo
+done
+
+issues=$(
+    git log "$1" |
+    grep -Eio 'https?://github\.com/libguestfs/guestfs-tools/issues/[0-9]+' |
+    sort -u
+)
+
+for issue in $issues ; do
+    echo "=item L<$issue>"
+    echo
+    echo "XXX"
+    echo
+done
index 5dc01234091e18368eb288d1a5a41f0f0a59b75a..52e76401e6dd0e0e5dee16d82420ef16fb8c8897 100644 (file)
@@ -239,7 +239,22 @@ WantedBy=%s
 end
 
 module Windows = struct
-  let rec install_service (g : Guestfs.guestfs) root =
+  (* Create and return the firstboot directory. *)
+  let create_firstboot_dir (g : Guestfs.guestfs) =
+    let rec loop firstboot_dir firstboot_dir_win = function
+      | [] -> firstboot_dir, firstboot_dir_win
+      | dir :: path ->
+         let firstboot_dir =
+           if firstboot_dir = "" then "/" ^ dir else firstboot_dir // dir in
+         let firstboot_dir_win = firstboot_dir_win ^ "\\" ^ dir in
+         let firstboot_dir = g#case_sensitive_path firstboot_dir in
+         g#mkdir_p firstboot_dir;
+         loop firstboot_dir firstboot_dir_win path
+    in
+    loop "" "C:" ["Program Files"; "Guestfs"; "Firstboot"]
+
+  let rec install_service (g : Guestfs.guestfs) root
+            firstboot_dir firstboot_dir_win =
     (* Either rhsrvany.exe or pvvxsvc.exe must exist.
      *
      * (Check also that it's not a dangling symlink but a real file).
@@ -254,20 +269,7 @@ module Windows = struct
        error (f_"One of rhsrvany.exe or pvvxsvc.exe is missing in %s.  One of them is required in order to install Windows firstboot scripts.  You can get one by building rhsrvany (https://github.com/rwmjones/rhsrvany)")
              (virt_tools_data_dir ()) in
 
-    (* Create a directory for firstboot files in the guest. *)
-    let firstboot_dir, firstboot_dir_win =
-      let rec loop firstboot_dir firstboot_dir_win = function
-        | [] -> firstboot_dir, firstboot_dir_win
-        | dir :: path ->
-          let firstboot_dir =
-            if firstboot_dir = "" then "/" ^ dir else firstboot_dir // dir in
-          let firstboot_dir_win = firstboot_dir_win ^ "\\" ^ dir in
-          let firstboot_dir = g#case_sensitive_path firstboot_dir in
-          g#mkdir_p firstboot_dir;
-          loop firstboot_dir firstboot_dir_win path
-      in
-      loop "" "C:" ["Program Files"; "Guestfs"; "Firstboot"] in
-
+    (* Create a directory for firstboot scripts in the guest. *)
     g#mkdir_p (firstboot_dir // "scripts");
 
     (* Copy pvvxsvc or rhsrvany to the guest. *)
@@ -276,6 +278,9 @@ module Windows = struct
     (* Write a firstboot.bat control script which just runs the other
      * scripts in the directory.  Note we need to use CRLF line endings
      * in this script.
+     *
+     * XXX It would be better to use powershell here.  For some ideas see
+     * https://github.com/HCK-CI/HLK-Setup-Scripts/
      *)
     let firstboot_script = sprintf "\
 @echo off
@@ -297,6 +302,7 @@ if not exist \"%%scripts_done%%\" (
   mkdir \"%%scripts_done%%\"
 )
 
+:: Pick the next script to run.
 for %%%%f in (\"%%scripts%%\"\\*.bat) do (
   echo running \"%%%%f\"
   move \"%%%%f\" \"%%scripts_done%%\"
@@ -305,8 +311,17 @@ for %%%%f in (\"%%scripts%%\"\\*.bat) do (
   set elvl=!errorlevel!
   echo .... exit code !elvl!
   popd
+
+  :: Reboot the computer.  This is necessary to free any locked
+  :: files which may prevent later scripts from running.
+  shutdown /r /t 0 /y
+
+  :: Exit the script (in case shutdown returns before rebooting).
+  :: On next boot, the whole firstboot service will be called again.
+  exit /b
 )
 
+:: Fallthrough here if there are no scripts.
 echo uninstalling firstboot service
 \"%%firstboot%%\\%s\" -s firstboot uninstall
 " firstboot_dir_win srvany in
@@ -339,11 +354,25 @@ echo uninstalling firstboot service
             "PWD", REG_SZ firstboot_dir_win ];
         ] in
         reg_import reg regedits
-      );
-
-    firstboot_dir
+      )
 end
 
+let firstboot_dir (g : Guestfs.guestfs) root =
+  let typ = g#inspect_get_type root in
+
+  match typ with
+  | "linux" ->
+     let dir = Linux.firstboot_dir in
+     g#mkdir_p dir;
+     dir, None
+
+  | "windows" ->
+     let dir, dir_win = Windows.create_firstboot_dir g in
+     dir, Some dir_win
+
+  | _ ->
+    error (f_"guest type %s is not supported") typ
+
 let script_count = ref 0
 
 let add_firstboot_script (g : Guestfs.guestfs) root ?(prio = 5000) name
@@ -363,7 +392,8 @@ let add_firstboot_script (g : Guestfs.guestfs) root ?(prio = 5000) name
     g#chmod 0o755 filename
 
   | "windows", _ ->
-    let firstboot_dir = Windows.install_service g root in
+    let firstboot_dir, firstboot_dir_win = Windows.create_firstboot_dir g in
+    Windows.install_service g root firstboot_dir firstboot_dir_win;
     let filename = firstboot_dir // "scripts" // filename ^ ".bat" in
     g#write filename (String.unix2dos content)
 
@@ -382,21 +412,18 @@ let add_firstboot_powershell g root ?prio name code =
    *)
   assert (g#inspect_get_type root = "windows");
 
-  let windows_systemroot = g#inspect_get_windows_systemroot root in
-
-  (* Create the temporary directory to put the Powershell file. *)
-  let tempdir = sprintf "%s/Temp" windows_systemroot in
+  (* Place the Powershell script into firstboot_dir/Temp *)
+  let firstboot_dir, firstboot_dir_win = Windows.create_firstboot_dir g in
+  let tempdir = sprintf "%s/Temp" firstboot_dir in
   g#mkdir_p tempdir;
-  let code = String.concat "\r\n" code ^ "\r\n" in
-  g#write (sprintf "%s/%s" tempdir name) code;
-
-  (* Powershell interpreter.  Should we check this exists? XXX *)
-  let ps_exe =
-    windows_systemroot ^
-    "\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" in
 
-  (* Windows path to the Powershell script. *)
-  let ps_path = windows_systemroot ^ "\\Temp\\" ^ name in
+  let ps_path = sprintf "%s/%s.ps1" tempdir name in
+  let ps_path_win = sprintf "%s\\Temp\\%s.ps1" firstboot_dir_win name in
+  let code = String.concat "\r\n" code ^ "\r\n" in
+  g#write ps_path code;
 
-  let fb = sprintf "%s -ExecutionPolicy ByPass -file %s" ps_exe ps_path in
+  (* Create a regular firstboot bat that just invokes powershell *)
+  let fb =
+    sprintf "powershell.exe -ExecutionPolicy ByPass -NoProfile -file \"%s\""
+      ps_path_win in
   add_firstboot_script g root ?prio name fb
index 8231af658e4da6161458d04acaef55de1d4ede38..34ff069017fbf07636001538666c423cda700286 100644 (file)
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  *)
 
+val firstboot_dir : Guestfs.guestfs -> string -> string * string option
+(** [firstboot_dir g root]
+    returns the path of the firstboot directory, creating it in
+    the guest if necessary.
+
+    This returns the name of the directory as a guestfs path, and
+    optionally the name as a Windows path (only for Windows guests).
+
+    For Linux this could be [/usr/lib/virt-sysprep, None]
+
+    For Windows this could be ["/Program Files/Guestfs/Firstboot",
+    Some "C:\Program Files\Guestfs\Firstboot"]
+
+    Additional files that are used during firstboot can be placed
+    in this directory, but be careful not to conflict with files
+    and scripts added by the firstboot process itself. *)
+
 val add_firstboot_script : Guestfs.guestfs -> string -> ?prio:int -> string ->
                            string -> unit
   (** [add_firstboot_script g root prio name content] adds a firstboot
index 2a30b20081294d8c41ef62247ba5a21b508ad1f0..0a4b8dac0e5cce0fb4f59c6cb104205ba7de1cfd 100644 (file)
@@ -261,10 +261,17 @@ let rec inject_virtio_win_drivers ({ g } as t) reg =
     }
   )
 
-and inject_qemu_ga t =
-  let msi_files = copy_qemu_ga t in
+and inject_qemu_ga ({ g; root } as t) =
+  (* Copy the qemu-ga MSI(s) to the guest. *)
+  let dir, dir_win = Firstboot.firstboot_dir g root in
+  let dir_win = Option.value dir_win ~default:dir in
+  let tempdir = sprintf "%s/Temp" dir in
+  let tempdir_win = sprintf "%s\\Temp" dir_win in
+  g#mkdir_p tempdir;
+
+  let msi_files = copy_qemu_ga t tempdir in
   if msi_files <> [] then
-    configure_qemu_ga t msi_files;
+    configure_qemu_ga t tempdir_win msi_files;
   msi_files <> [] (* return true if we found some qemu-ga MSI files *)
 
 and add_guestor_to_registry t ((g, root) as reg) drv_name drv_pciid =
@@ -346,8 +353,8 @@ and copy_drivers t driverdir =
       (fun () ->
         error (f_"root directory ‘/’ is missing from the virtio-win directory or ISO.\n\nThis should not happen and may indicate that virtio-win or virt-v2v is broken in some way.  Please report this as a bug with a full debug log."))
 
-and copy_qemu_ga t =
-  copy_from_virtio_win t "/" "/" (virtio_iso_path_matches_qemu_ga t)
+and copy_qemu_ga t tempdir =
+  copy_from_virtio_win t "/" tempdir (virtio_iso_path_matches_qemu_ga t)
     (fun () ->
       error (f_"root directory ‘/’ is missing from the virtio-win directory or ISO.\n\nThis should not happen and may indicate that virtio-win or virt-v2v is broken in some way.  Please report this as a bug with a full debug log."))
 
@@ -445,7 +452,10 @@ and virtio_iso_path_matches_guest_os t path =
      * "./drivers/amd64/Win2012R2/netkvm.sys".
      * Note we check lowercase paths.
      *)
-    let pathelem elem = String.find lc_path ("/" ^ elem ^ "/") >= 0 in
+    let pathelem elem =
+      String.find lc_path ("/" ^ elem ^ "/") >= 0 ||
+      String.is_prefix lc_path (elem ^ "/")
+    in
     let p_arch =
       if pathelem "x86" || pathelem "i386" then "i386"
       else if pathelem "amd64" then "x86_64"
@@ -489,7 +499,11 @@ and virtio_iso_path_matches_guest_os t path =
       else
         raise Not_found in
 
-    arch = p_arch && os_major = p_os_major && os_minor = p_os_minor &&
+    let p_sriov = pathelem "sriov" in
+
+    arch = p_arch &&
+    not p_sriov && (* always ignored, see RHEL-56383 *)
+    os_major = p_os_major && os_minor = p_os_minor &&
     match_os_variant os_variant &&
     match_osinfo osinfo
 
@@ -552,37 +566,28 @@ and copy_from_libosinfo { g; i_osinfo; i_arch } destdir =
     ) driver.Libosinfo.files
   with Not_found -> []
 
-and configure_qemu_ga t files =
+(* Install qemu-ga.  [files] is the non-empty list of possible qemu-ga
+ * installers we detected.
+ *)
+and configure_qemu_ga t tempdir_win files =
+  let script = ref [] in
+  let add = List.push_back script in
+
+  add "# Virt-v2v script which installs QEMU Guest Agent";
+  add "";
+  add "# Uncomment this line for lots of debug output.";
+  add "# Set-PSDebug -Trace 2";
+  add "";
+  add "Write-Host Installing QEMU Guest Agent";
+  add "";
+  add "# Run qemu-ga installers";
   List.iter (
-    fun msi_path ->
-      (* Windows is a trashfire.
-       * https://stackoverflow.com/a/18730884
-       * https://bugzilla.redhat.com/show_bug.cgi?id=1895323
-       *)
-      let psh_script = ref [] in
-      let add = List.push_back psh_script in
-
-      add "# Uncomment this line for lots of debug output.";
-      add "# Set-PSDebug -Trace 2";
-      add "";
-      add "Write-Host Removing any previously scheduled qemu-ga installation";
-      add "schtasks.exe /Delete /TN Firstboot-qemu-ga /F";
-      add "";
-      add (sprintf
-             "Write-Host Scheduling delayed installation of qemu-ga from %s"
-             msi_path);
-      add "$d = (get-date).AddSeconds(120)";
-      add "$dtfinfo = [System.Globalization.DateTimeFormatInfo]::CurrentInfo";
-      add "$sdp = $dtfinfo.ShortDatePattern";
-      add "$sdp = $sdp -replace 'y+', 'yyyy'";
-      add "$sdp = $sdp -replace 'M+', 'MM'";
-      add "$sdp = $sdp -replace 'd+', 'dd'";
-      add "schtasks.exe /Create /SC ONCE `";
-      add "  /ST $d.ToString('HH:mm') /SD $d.ToString($sdp) `";
-      add "  /RU SYSTEM /TN Firstboot-qemu-ga `";
-      add (sprintf "  /TR \"C:\\%s /forcerestart /qn /l+*vx C:\\%s.log\""
-             msi_path msi_path);
-
-      Firstboot.add_firstboot_powershell t.g t.root
-        (sprintf "install-%s.ps1" msi_path) !psh_script;
-  ) files
+    fun msi ->
+      add (sprintf "Write-Host \"Writing log to %s\\%s.log\""
+             tempdir_win msi);
+      (* [`] is an escape char for quotes *)
+      add (sprintf "Start-Process -Wait -FilePath \"%s\\%s\" -ArgumentList \"/norestart\",\"/qn\",\"/l+*vx\",\"`\"%s\\%s.log`\"\""
+             tempdir_win msi tempdir_win msi)
+  ) files;
+
+  Firstboot.add_firstboot_powershell t.g t.root "install-qemu-ga" !script
index 23ff76a5504c09a9c425c11d68075bf0bce3330e..e0b6b8a00d3e65070e79d2c261d05c0f4f5fe9fe 100644 (file)
@@ -102,7 +102,7 @@ let detect_kernels (g : G.guestfs) root bootloader apps =
     ) apps in
     if verbose () then (
       let names = List.map (fun { G.app2_name = name } -> name) kernel_pkgs in
-      eprintf "candidate kernel packages in this guest: %s%!\n"
+      eprintf "info: candidate kernel packages in this guest: %s%!\n"
         (String.concat " " names)
     );
     List.filter_map (
@@ -306,7 +306,7 @@ let detect_kernels (g : G.guestfs) root bootloader apps =
     ) kernel_pkgs in
 
   if verbose () then (
-    eprintf "installed kernel packages in this guest:\n";
+    eprintf "info: installed kernel packages in this guest:\n";
     List.iter (print_kernel_info stderr "\t") installed_kernels;
     flush stderr
   );
@@ -343,7 +343,7 @@ let detect_kernels (g : G.guestfs) root bootloader apps =
     ) vmlinuzes in
 
   if verbose () then (
-    eprintf "kernels offered by the bootloader in this guest (first in list is default):\n";
+    eprintf "info: kernels offered by the bootloader in this guest (first in list is default):\n";
     List.iter (print_kernel_info stderr "\t") bootloader_kernels;
     flush stderr
   );
index 7c625043036dcca1ccebaf7eff19070eb6a7bf2b..f9881c365da2bf1617d61651705a94d71e51c40a 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.72 for guestfs-tools 1.52.1.
+# Generated by GNU Autoconf 2.72 for guestfs-tools 1.52.2.
 #
 #
 # Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation,
@@ -611,8 +611,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='guestfs-tools'
 PACKAGE_TARNAME='guestfs-tools'
-PACKAGE_VERSION='1.52.1'
-PACKAGE_STRING='guestfs-tools 1.52.1'
+PACKAGE_VERSION='1.52.2'
+PACKAGE_STRING='guestfs-tools 1.52.2'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1500,7 +1500,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-'configure' configures guestfs-tools 1.52.1 to adapt to many kinds of systems.
+'configure' configures guestfs-tools 1.52.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1571,7 +1571,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of guestfs-tools 1.52.1:";;
+     short | recursive ) echo "Configuration of guestfs-tools 1.52.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1748,7 +1748,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-guestfs-tools configure 1.52.1
+guestfs-tools configure 1.52.2
 generated by GNU Autoconf 2.72
 
 Copyright (C) 2023 Free Software Foundation, Inc.
@@ -2304,7 +2304,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by guestfs-tools $as_me 1.52.1, which was
+It was created by guestfs-tools $as_me 1.52.2, which was
 generated by GNU Autoconf 2.72.  Invocation command line was
 
   $ $0$ac_configure_args_raw
@@ -4943,7 +4943,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='guestfs-tools'
- VERSION='1.52.1'
+ VERSION='1.52.2'
 
 
 printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -22295,7 +22295,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by guestfs-tools $as_me 1.52.1, which was
+This file was extended by guestfs-tools $as_me 1.52.2, which was
 generated by GNU Autoconf 2.72.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -22363,7 +22363,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config='$ac_cs_config_escaped'
 ac_cs_version="\\
-guestfs-tools config.status 1.52.1
+guestfs-tools config.status 1.52.2
 configured by $0, generated by GNU Autoconf 2.72,
   with options \\"\$ac_cs_config\\"
 
index 56f78b168cfdfd608ed17366c90a821a592cb564..17063720ff03685446e89b219c49421451e1731a 100644 (file)
@@ -15,7 +15,7 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
-AC_INIT([guestfs-tools], [1.52.1])
+AC_INIT([guestfs-tools], [1.52.2])
 
 dnl The common/ subdirectory assumes this.  In libguestfs it contains
 dnl the --with-extra parameter.  Here we just define it to the version.
index 1ceba3208e76900b50d343304ec9c07256a5be80..4921f8a2c126899495f1223a0860247a9c3304b3 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-alignment-scan 1"
-.TH virt-alignment-scan 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-alignment-scan 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 40a079e929ec8444820d57aa57dbe7b91a11ab4a..408eb8c0b4ccc367c572766e56236a2df01acc61 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-builder 1"
-.TH virt-builder 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-builder 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 1267dde098fdfb9168ba79402a22d6e6253a6382..6f6aa7219e788572a4c28acc1a8d77eb4d1fa392 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-cat 1"
-.TH virt-cat 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-cat 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 1d26df723b0769e8966fef7e703498733500c8e5..e7dcdd45e9c8ffb10e8b481e3100bb61cb78d622 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-customize 1"
-.TH virt-customize 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-customize 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index e19da5166bccfae528a77cb3c12bbeb13d3a6e0d..b1d78ccd63157e1f9f0afb9eaa1d5249b0aef764 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-df 1"
-.TH virt-df 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-df 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 21e5c186e6a15e603d14359e94609ad68d16d33b..9b068efecd2e962013b1e56f01a875c015fd3fe6 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-diff 1"
-.TH virt-diff 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-diff 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 6d1b8374a2c9c408eba8bbc5e7732789ef1d4e76..4a10fb0266f21a9586b5a8bb2267c178c092747f 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-edit 1"
-.TH virt-edit 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-edit 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index ccebbdac48bebc6d2dd06469ae4b96cafbc270a0..cdaa242d72d841ba3646ed898684994ddd956a2c 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-filesystems 1"
-.TH virt-filesystems 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-filesystems 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 5bc76eaa6285c427489cdad4d2561260092d9984..906e78f84f6a312c5b154693b8ef37891b6b4c34 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-format 1"
-.TH virt-format 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-format 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index b52bad48893d3c6f516e4412208ad9e987230542..f0955916f8f57b0c175e10ba7184a7d90ed84be7 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-get-kernel 1"
-.TH virt-get-kernel 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-get-kernel 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index fff0aeb5545a058f62cb09d28cc7c314274fe0bc..4e9276796e5eae6a4596f80bbacc15bab7fc3267 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-index-validate 1"
-.TH virt-index-validate 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-index-validate 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index a6ef7f8fd854a1f4bddafb1c8430dbc1863d6f29..8a0670bbe220f5f555445f592d1c7fdb4cea1406 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-inspector 1"
-.TH virt-inspector 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-inspector 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index b6d41956cb28a68ae61589e1ea37d95a0d2e2324..0a7d9d536d1d0a62072c825ad7f442f221f230f9 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-log 1"
-.TH virt-log 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-log 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 36c3bc7a733842dc309f1d54eedb57fceacebee1..b8c04db5e269cfb050afed3d084c0fb6ceb411db 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-ls 1"
-.TH virt-ls 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-ls 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 1cd6404edfc282ccf59c910e9ef8992f0fb1aa0e..e0b416b593a916ce1091d058e075c9685372b8bf 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-make-fs 1"
-.TH virt-make-fs 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-make-fs 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index ffa58283f013a6eb8fa534db54a43eb0aca86e50..7b0b5bef0bc2574bd182c0c7af071be1ed6574ae 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-resize 1"
-.TH virt-resize 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-resize 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 5e171c20157ed901050965812a453fafa4dde891..b5b11405638bbc24946b4941ee865c9261649dfd 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-sparsify 1"
-.TH virt-sparsify 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-sparsify 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 853f0f2a65674461ab331dc875dcc4e7757d7c32..87a97beae5ab90300b0de7217d83eca38b8b79ff 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-sysprep 1"
-.TH virt-sysprep 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-sysprep 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 133039bad0e19fcae91c3a072b719f9b0b4b88e0..aad9a0ac5f2f24fcf5fbe118af4535901c80d25a 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-win-reg 1"
-.TH virt-win-reg 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-win-reg 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 2744575f1c5fba58d80a30d2e793092614de4794..8729a579e3dd2df20355fb2d5f044addffdc83d8 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-alignment-scan 1"
-.TH virt-alignment-scan 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-alignment-scan 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 7bbafdc16050bf7edc54f24ebd36bb674fc94d49..e2f4b91500f9181a7205f013778d96aafe407554 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-builder 1"
-.TH virt-builder 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-builder 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 161c9238e21e2e2a5f31f6cecf3a00f11e5d478d..54dfa6714835eb2534d7e5c9d1278fd63c0ab54e 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-cat 1"
-.TH virt-cat 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-cat 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index d91642d11476a3ad1749af84dc429ac0abc9ac1a..470da44db6126606dceed888351287ab3ff428b1 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-customize 1"
-.TH virt-customize 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-customize 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 19f237db7f869b7dbaf51f82919585cf711ff0d6..051b10429868f41000987f423decc819e2d352c0 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-df 1"
-.TH virt-df 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-df 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 1fe16fd5653c777f9659ca3c784ae0c1c039f561..d1fe8837863a0f2860eb8d51cf8c5668e5e2f7f6 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-diff 1"
-.TH virt-diff 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-diff 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 073314456edae5d0b4260a44c21007879df365be..d7b2c8535bf720f0829fa86142e39f5229b2f1ff 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-edit 1"
-.TH virt-edit 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-edit 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 588c3ec4ef36fc9c1624eb3262a89dca010a826c..9b2e3891533c7240ef278c86515f666bc3194781 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-filesystems 1"
-.TH virt-filesystems 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-filesystems 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index a1130e753a57af261951412e908ee84916b1e989..3ffc32f802e248ba37c0f8c9624da1af617d2396 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-format 1"
-.TH virt-format 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-format 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index eee29c04a955cb18b7e04ff8cdbfa7f7c09b8fb1..68a497708a367ffe2ecb6e9ebe088814b99283bf 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-get-kernel 1"
-.TH virt-get-kernel 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-get-kernel 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 0a7ccf9e61075e3b4567ab0f41881aa62e8ab4a5..c4ebe9690b04309175cdcce1e24933d478ec39d9 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-index-validate 1"
-.TH virt-index-validate 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-index-validate 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index c81fc3c13fc6a0f483c1014c9589677650216fae..9a1d2aedb5aaefee86ad2ab14c34bc88a1ecceab 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-inspector 1"
-.TH virt-inspector 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-inspector 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index d2440ed3be2a0c87c76b9e8b94f09311a08532fc..a516731fb4c54077e72ea838ae2bfe72f880ec2f 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-log 1"
-.TH virt-log 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-log 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index ce1ea898dbd047a2bc7e790c2632581cec308ee4..bd29972400e6e48c261a01003dcdf7788572734b 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-ls 1"
-.TH virt-ls 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-ls 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 4d529ebb2abd779c32bcb94c2979bd673663a5a7..b5c089382c1d7e096101d40557fe52e1e79ddffb 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-make-fs 1"
-.TH virt-make-fs 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-make-fs 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 9071e8d7e347db74b2de741d8d62a0b98a3bf258..80f75db2567a5529db98b2bd798247491e2f7311 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-resize 1"
-.TH virt-resize 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-resize 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index b960963ddc279be81d903f8a8017f631e376d9d7..597126485f44fff25bffb0cb150af8a0ee76783e 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-sparsify 1"
-.TH virt-sparsify 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-sparsify 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index c22751a1c9fbfd5e586b30f8bfd0e2fe513b1c8d..b1092d4c614b8c02087d1b8787ffb3d9b3693a53 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-sysprep 1"
-.TH virt-sysprep 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-sysprep 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 4886e49e1f3dd5ec09a2160f10ae5534b404addb..f73a47d2bc608f0d4a60ace2ed99e5990ae53e2b 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- mode: troff; coding: utf-8 -*-
-.\" Automatically generated by Podwrapper::Man 1.52.1 (Pod::Simple 3.45)
+.\" Automatically generated by Podwrapper::Man 1.52.2 (Pod::Simple 3.45)
 .\"
 .\" Standard preamble:
 .\" ========================================================================
@@ -58,7 +58,7 @@
 .\" ========================================================================
 .\"
 .IX Title "virt-win-reg 1"
-.TH virt-win-reg 1 2024-08-27 guestfs-tools-1.52.1 "Virtualization Support"
+.TH virt-win-reg 1 2024-10-03 guestfs-tools-1.52.2 "Virtualization Support"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
index 77f5dfeceb9d24f340230e88dcc3a8bab58fc336..30a9c5e0681fc200602eaac2601248033bc7a600 100644 (file)
@@ -6,10 +6,10 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: guestfs-tools 1.52.1\n"
+"Project-Id-Version: guestfs-tools 1.52.2\n"
 "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/enter_bug.cgi?"
 "component=libguestfs&product=Virtualization+Tools\n"
-"POT-Creation-Date: 2024-08-27 22:50+0100\n"
+"POT-Creation-Date: 2024-10-03 14:13+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -178,7 +178,7 @@ msgstr ""
 msgid "%s: cannot determine the virtual size of %s due to compression"
 msgstr ""
 
-#: common/mlcustomize/inject_virtio_win.ml:401
+#: common/mlcustomize/inject_virtio_win.ml:408
 msgid "%s: cannot open virtio-win ISO file: %s"
 msgstr ""
 
@@ -1264,7 +1264,7 @@ msgid ""
 "new random UUIDs are generated and assigned to filesystems."
 msgstr ""
 
-#: common/mlcustomize/firstboot.ml:254
+#: common/mlcustomize/firstboot.ml:269
 msgid ""
 "One of rhsrvany.exe or pvvxsvc.exe is missing in %s.  One of them is "
 "required in order to install Windows firstboot scripts.  You can get one by "
@@ -2513,11 +2513,11 @@ msgstr ""
 msgid "generated by %s %s"
 msgstr ""
 
-#: common/mlcustomize/firstboot.ml:165
+#: common/mlcustomize/firstboot.ml:374 common/mlcustomize/firstboot.ml:165
 msgid "guest type %s is not supported"
 msgstr ""
 
-#: common/mlcustomize/firstboot.ml:371
+#: common/mlcustomize/firstboot.ml:401
 msgid "guest type %s/%s is not supported"
 msgstr ""
 
@@ -2864,8 +2864,8 @@ msgstr ""
 msgid "resize2fs"
 msgstr ""
 
-#. common/mlcustomize/inject_virtio_win.ml:347
-#: common/mlcustomize/inject_virtio_win.ml:352
+#. common/mlcustomize/inject_virtio_win.ml:354
+#: common/mlcustomize/inject_virtio_win.ml:359
 msgid ""
 "root directory ‘/’ is missing from the virtio-win directory or ISO.\n"
 "\n"