From: Hilko Bengen Date: Thu, 12 Jan 2023 09:52:33 +0000 (+0100) Subject: New upstream version 1.48.3 X-Git-Tag: archive/raspbian/1.52.3-1+rpi1^2^2^2^2~6^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3460ab2c0d05c1e3b97b26173959403629f3bd21;p=guestfs-tools.git New upstream version 1.48.3 --- diff --git a/align/scan.c b/align/scan.c index c507e44..b41a721 100644 --- a/align/scan.c +++ b/align/scan.c @@ -364,6 +364,11 @@ static int scan_work (guestfs_h *g, size_t i, FILE *fp) { struct guestfs_add_libvirt_dom_argv optargs; + const char *name = domains[i].name ? domains[i].name : "(no name)"; + int r; + + if (verbose) + fprintf (stderr, "scan: domain %zu: %s: opening connection\n", i, name); optargs.bitmask = GUESTFS_ADD_LIBVIRT_DOM_READONLY_BITMASK | @@ -377,7 +382,16 @@ scan_work (guestfs_h *g, size_t i, FILE *fp) if (guestfs_launch (g) == -1) return -1; - return scan (g, !uuid ? domains[i].name : domains[i].uuid, fp); + if (verbose) + fprintf (stderr, "scan: domain %zu: %s: performing scan\n", i, name); + + r = scan (g, !uuid ? domains[i].name : domains[i].uuid, fp); + + if (verbose) + fprintf (stderr, "scan: domain %zu: %s: finishing scan: result=%d\n", + i, name, r); + + return r; } #endif /* HAVE_LIBVIRT */ diff --git a/builder/sigchecker.ml b/builder/sigchecker.ml index 088674d..72c9a26 100644 --- a/builder/sigchecker.ml +++ b/builder/sigchecker.ml @@ -67,8 +67,9 @@ let import_keyfile ~gpg ~gpghome ~tmpdir ?(trust = true) keyfile = let subkeys = (* --with-fingerprint is specified twice so gpg outputs the full * fingerprint of the subkeys. *) - let cmd = sprintf "%s --homedir %s --with-colons --with-fingerprint --with-fingerprint --list-keys %s" - gpg gpghome !fingerprint in + let cmd = sprintf "%s --homedir %s --with-colons --with-fingerprint --with-fingerprint --list-keys %s%s" + gpg gpghome !fingerprint + (if verbose () then "" else " 2>/dev/null") in let lines = external_command cmd in let current = ref None in let subkeys = ref [] in diff --git a/builder/templates/fedora-37.index-fragment b/builder/templates/fedora-37.index-fragment new file mode 100644 index 0000000..3225e53 --- /dev/null +++ b/builder/templates/fedora-37.index-fragment @@ -0,0 +1,22 @@ +[fedora-37] +name=Fedora® 37 Server +osinfo=fedora37 +arch=x86_64 +file=fedora-37.xz +checksum[sha512]=b318bf8da65e9624459381a93f8a29072e24691f6827f65a89612e50e94a68f6130e77be99c771d9567cb2fa533a87d7aab52591df530e879d6f898e524fde65 +format=raw +size=6442450944 +compressed_size=678006876 +expand=/dev/sda3 +notes=Fedora® 37 Server + + This Fedora image contains only unmodified @Core group packages. + + Fedora and the Infinity design logo are trademarks of Red Hat, Inc. + Source and further information is available from http://fedoraproject.org/ + + This template was generated by a script in the libguestfs source tree: + builder/templates/make-template.ml + Associated files used to prepare this template can be found in the + same directory. + diff --git a/builder/templates/fedora-37.ks b/builder/templates/fedora-37.ks new file mode 100644 index 0000000..d31a2bf --- /dev/null +++ b/builder/templates/fedora-37.ks @@ -0,0 +1,47 @@ +# Kickstart file for fedora-37 +# Generated by libguestfs.git/builder/templates/make-template.ml + +text +reboot +lang en_US.UTF-8 +keyboard us +network --bootproto dhcp +rootpw builder +firewall --enabled --ssh +timezone --utc America/New_York +selinux --enforcing + +bootloader --location=mbr --append="console=tty0 console=ttyS0,115200 rd_NO_PLYMOUTH" + + +zerombr +clearpart --all --initlabel --disklabel=gpt +autopart --type=plain + +# Halt the system once configuration has finished. +poweroff + +%packages +@core +%end + +%post +# Ensure the installation is up-to-date. +dnf -y --best upgrade +# This required otherwise the kernel will not be bootable, see +# https://bugzilla.redhat.com/show_bug.cgi?id=1911177 +# https://bugzilla.redhat.com/show_bug.cgi?id=1945835#c24 +grub2-mkconfig -o '/etc/grub2.cfg' +# Enable Xen domU support. +pushd /etc/dracut.conf.d +echo 'add_drivers+=" xen:vbd xen:vif "' > virt-builder-xen-drivers.conf +popd +# To make dracut config changes permanent, we need to rerun dracut. +# Rerun dracut for the installed kernel (not the running kernel). +# See commit 0fa52e4e45d80874bc5ea5f112f74be1d3f3472f and +# https://www.redhat.com/archives/libguestfs/2014-June/thread.html#00045 +KERNEL_VERSION="$(rpm -q kernel --qf '%{version}-%{release}.%{arch}\n' | sort -V | tail -1)" +dracut -f /boot/initramfs-$KERNEL_VERSION.img $KERNEL_VERSION +%end + +# EOF diff --git a/builder/templates/fedora-37.virt-install-cmd b/builder/templates/fedora-37.virt-install-cmd new file mode 100644 index 0000000..002d2b1 --- /dev/null +++ b/builder/templates/fedora-37.virt-install-cmd @@ -0,0 +1,20 @@ +# This is the virt-install command which was used to create +# the virt-builder template 'fedora-37' +# NB: This file is generated for documentation purposes ONLY! +# This script was never run, and is not intended to be run. + +'virt-install' \ + '--transient' \ + '--name=tmp-99wfai2n' \ + '--ram=4096' \ + '--arch=x86_64' \ + '--cpu=host' \ + '--vcpus=4' \ + '--os-variant=fedora34' \ + '--initrd-inject=fedora-37.ks' \ + '--extra-args=inst.ks=file:/fedora-37.ks console=tty0 console=ttyS0,115200 rd_NO_PLYMOUTH' \ + '--disk=/home/rjones/d/guestfs-tools/builder/templates/tmp-99wfai2n.img,size=6,format=raw' \ + '--location=https://lon.mirror.rackspace.com/fedora/releases/37/Server/x86_64/os/' \ + '--serial=pty' \ + '--nographics' + diff --git a/builder/templates/make-template.ml b/builder/templates/make-template.ml index 6786fec..c3386d3 100755 --- a/builder/templates/make-template.ml +++ b/builder/templates/make-template.ml @@ -366,6 +366,7 @@ and os_of_string os ver = | "ubuntu", "16.04" -> Ubuntu (ver, "xenial") | "ubuntu", "18.04" -> Ubuntu (ver, "bionic") | "ubuntu", "20.04" -> Ubuntu (ver, "focal") + | "ubuntu", "22.04" -> Ubuntu (ver, "jammy") | "fedora", ver -> Fedora (int_of_string ver) | "freebsd", ver -> let maj, min = parse_major_minor ver in FreeBSD (maj, min) | "windows", ver -> parse_windows_version ver @@ -959,7 +960,7 @@ and make_boot_media os arch = Location (sprintf "http://download.eng.bos.redhat.com/released/rhel-6-7-8/rhel-8/RHEL-8/8.%d.0/BaseOS/%s/os" minor (string_of_arch arch)) | RHEL (9, minor), arch -> - Location (sprintf "http://download.eng.bos.redhat.com/released/rhel-9/RHEL-9/9.%d.0/BaseOS/%s/os" minor (string_of_arch arch)) + Location (sprintf "http://download.eng.bos.redhat.com/released/RHEL-9/9.%d.0/BaseOS/%s/os" minor (string_of_arch arch)) | Ubuntu (_, dist), X86_64 -> Location (sprintf "http://archive.ubuntu.com/ubuntu/dists/%s/main/installer-amd64" dist) @@ -1233,15 +1234,14 @@ and os_variant_of_os ?(for_fedora = false) os arch = sprintf "rhel7.%d" minor | RHEL (7, _), _ -> "rhel7.5" (* max version known in Fedora 29 *) | RHEL (8, _), _ -> "rhel8.5" (* max version known in Fedora 36 *) + | RHEL (9, _), _ -> "rhel9.0" (* max version known in Fedora 37 *) | RHEL (major, minor), _ -> sprintf "rhel%d.%d" major minor | Debian (ver, _), _ when ver <= 8 -> sprintf "debian%d" ver | Debian _, _ -> "debian8" (* max version known in Fedora 26 *) - | Ubuntu (ver, _), _ when ver < "20.04" -> sprintf "ubuntu%s" ver - | Ubuntu ("20.04", _), _ -> "ubuntu19.10" - | Ubuntu _, _ -> assert false + | Ubuntu (ver, _), _ -> sprintf "ubuntu%s" ver | FreeBSD (major, minor), _ -> sprintf "freebsd%d.%d" major minor diff --git a/builder/templates/rhel-8.7.ks b/builder/templates/rhel-8.7.ks new file mode 100644 index 0000000..0871de8 --- /dev/null +++ b/builder/templates/rhel-8.7.ks @@ -0,0 +1,29 @@ +# Kickstart file for rhel-8.7 +# Generated by libguestfs.git/builder/templates/make-template.ml + +install +text +reboot +lang en_US.UTF-8 +keyboard us +network --bootproto dhcp +rootpw builder +firewall --enabled --ssh +timezone --utc America/New_York +selinux --enforcing + +bootloader --location=mbr --append="console=tty0 console=ttyS0,115200 rd_NO_PLYMOUTH" + + +zerombr +clearpart --all --initlabel --disklabel=gpt +autopart --type=plain + +# Halt the system once configuration has finished. +poweroff + +%packages +@core +%end + +# EOF diff --git a/builder/templates/rhel-8.7.virt-install-cmd b/builder/templates/rhel-8.7.virt-install-cmd new file mode 100644 index 0000000..9b6ed35 --- /dev/null +++ b/builder/templates/rhel-8.7.virt-install-cmd @@ -0,0 +1,20 @@ +# This is the virt-install command which was used to create +# the virt-builder template 'rhel-8.7' +# NB: This file is generated for documentation purposes ONLY! +# This script was never run, and is not intended to be run. + +'virt-install' \ + '--transient' \ + '--name=tmp-l2b72je2' \ + '--ram=4096' \ + '--arch=x86_64' \ + '--cpu=host' \ + '--vcpus=4' \ + '--os-variant=rhel8.5' \ + '--initrd-inject=rhel-8.7.ks' \ + '--extra-args=ks=file:/rhel-8.7.ks console=tty0 console=ttyS0,115200 rd_NO_PLYMOUTH' \ + '--disk=/home/rjones/d/guestfs-tools/builder/templates/tmp-l2b72je2.img,size=6,format=raw' \ + '--location=http://download.eng.bos.redhat.com/released/rhel-6-7-8/rhel-8/RHEL-8/8.7.0/BaseOS/x86_64/os' \ + '--serial=pty' \ + '--nographics' + diff --git a/builder/templates/rhel-9.1-aarch64.ks b/builder/templates/rhel-9.1-aarch64.ks new file mode 100644 index 0000000..fc89f26 --- /dev/null +++ b/builder/templates/rhel-9.1-aarch64.ks @@ -0,0 +1,28 @@ +# Kickstart file for rhel-9.1-aarch64 +# Generated by libguestfs.git/builder/templates/make-template.ml + +text +reboot +lang en_US.UTF-8 +keyboard us +network --bootproto dhcp +rootpw builder +firewall --enabled --ssh +timezone --utc America/New_York +selinux --enforcing + +bootloader --location=mbr --append="console=ttyAMA0 earlyprintk=pl011,0x9000000 ignore_loglevel no_timer_check printk.time=1 rd_NO_PLYMOUTH" + + +zerombr +clearpart --all --initlabel --disklabel=gpt +autopart --type=plain + +# Halt the system once configuration has finished. +poweroff + +%packages +@core +%end + +# EOF diff --git a/builder/templates/rhel-9.1-aarch64.virt-install-cmd b/builder/templates/rhel-9.1-aarch64.virt-install-cmd new file mode 100644 index 0000000..dee8f2c --- /dev/null +++ b/builder/templates/rhel-9.1-aarch64.virt-install-cmd @@ -0,0 +1,20 @@ +# This is the virt-install command which was used to create +# the virt-builder template 'rhel-9.1-aarch64' +# NB: This file is generated for documentation purposes ONLY! +# This script was never run, and is not intended to be run. + +'virt-install' \ + '--transient' \ + '--name=tmp-yzaw61l9' \ + '--ram=4096' \ + '--arch=aarch64' \ + '--vcpus=1' \ + '--os-variant=rhel9.0' \ + '--boot' 'loader=/usr/share/edk2/aarch64/QEMU_EFI-pflash.raw,loader_ro=yes,loader_type=pflash,nvram=/home/rjones/d/guestfs-tools/builder/templates/tmp-yzaw61l9.vars' \ + '--initrd-inject=rhel-9.1-aarch64.ks' \ + '--extra-args=inst.ks=file:/rhel-9.1-aarch64.ks console=ttyAMA0 earlyprintk=pl011,0x9000000 ignore_loglevel no_timer_check printk.time=1 rd_NO_PLYMOUTH' \ + '--disk=/home/rjones/d/guestfs-tools/builder/templates/tmp-yzaw61l9.img,size=6,format=raw' \ + '--location=http://download.eng.bos.redhat.com/released/RHEL-9/9.1.0/BaseOS/aarch64/os' \ + '--serial=pty' \ + '--nographics' + diff --git a/builder/templates/rhel-9.1.ks b/builder/templates/rhel-9.1.ks new file mode 100644 index 0000000..b2aa695 --- /dev/null +++ b/builder/templates/rhel-9.1.ks @@ -0,0 +1,28 @@ +# Kickstart file for rhel-9.1 +# Generated by libguestfs.git/builder/templates/make-template.ml + +text +reboot +lang en_US.UTF-8 +keyboard us +network --bootproto dhcp +rootpw builder +firewall --enabled --ssh +timezone --utc America/New_York +selinux --enforcing + +bootloader --location=mbr --append="console=tty0 console=ttyS0,115200 rd_NO_PLYMOUTH" + + +zerombr +clearpart --all --initlabel --disklabel=gpt +autopart --type=plain + +# Halt the system once configuration has finished. +poweroff + +%packages +@core +%end + +# EOF diff --git a/builder/templates/rhel-9.1.virt-install-cmd b/builder/templates/rhel-9.1.virt-install-cmd new file mode 100644 index 0000000..70a5d58 --- /dev/null +++ b/builder/templates/rhel-9.1.virt-install-cmd @@ -0,0 +1,20 @@ +# This is the virt-install command which was used to create +# the virt-builder template 'rhel-9.1' +# NB: This file is generated for documentation purposes ONLY! +# This script was never run, and is not intended to be run. + +'virt-install' \ + '--transient' \ + '--name=tmp-nuravdgs' \ + '--ram=4096' \ + '--arch=x86_64' \ + '--cpu=host' \ + '--vcpus=4' \ + '--os-variant=rhel9.0' \ + '--initrd-inject=rhel-9.1.ks' \ + '--extra-args=inst.ks=file:/rhel-9.1.ks console=tty0 console=ttyS0,115200 rd_NO_PLYMOUTH' \ + '--disk=/home/rjones/d/guestfs-tools/builder/templates/tmp-nuravdgs.img,size=6,format=raw' \ + '--location=http://download.eng.bos.redhat.com/released/RHEL-9/9.1.0/BaseOS/x86_64/os' \ + '--serial=pty' \ + '--nographics' + diff --git a/configure b/configure index 1000f89..e7a4e83 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for guestfs-tools 1.48.2. +# Generated by GNU Autoconf 2.71 for guestfs-tools 1.48.3. # # # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, @@ -618,8 +618,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='guestfs-tools' PACKAGE_TARNAME='guestfs-tools' -PACKAGE_VERSION='1.48.2' -PACKAGE_STRING='guestfs-tools 1.48.2' +PACKAGE_VERSION='1.48.3' +PACKAGE_STRING='guestfs-tools 1.48.3' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1494,7 +1494,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.48.2 to adapt to many kinds of systems. +\`configure' configures guestfs-tools 1.48.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1565,7 +1565,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of guestfs-tools 1.48.2:";; + short | recursive ) echo "Configuration of guestfs-tools 1.48.3:";; esac cat <<\_ACEOF @@ -1734,7 +1734,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -guestfs-tools configure 1.48.2 +guestfs-tools configure 1.48.3 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -2222,7 +2222,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.48.2, which was +It was created by guestfs-tools $as_me 1.48.3, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -4800,7 +4800,7 @@ fi # Define the identity of the package. PACKAGE='guestfs-tools' - VERSION='1.48.2' + VERSION='1.48.3' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -14162,7 +14162,7 @@ then : # --read-inline-info=no is a temporary workaround for RHBZ#1662656. # Note we run libtool, not $(LIBTOOL) since the latter expands to # libtool-kill-dependency-libs.sh - VG='libtool --mode=execute $(VALGRIND) --vgdb=no --log-file=$(abs_top_builddir)/tmp/valgrind-%q{T}-%p.log --leak-check=full --error-exitcode=119 --suppressions=$(abs_top_srcdir)/valgrind-suppressions --trace-children=no --child-silent-after-fork=yes --run-libc-freeres=no --read-inline-info=no' + VG='libtool --mode=execute $(VALGRIND) --vgdb=no --leak-check=full --error-exitcode=119 --suppressions=$(abs_top_srcdir)/valgrind-suppressions --trace-children=no --child-silent-after-fork=yes --run-libc-freeres=no --read-inline-info=no' else $as_nop @@ -21704,7 +21704,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.48.2, which was +This file was extended by guestfs-tools $as_me 1.48.3, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -21772,7 +21772,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.48.2 +guestfs-tools config.status 1.48.3 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 5bd9f9d..32b6fd4 100644 --- a/configure.ac +++ b/configure.ac @@ -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.48.2]) +AC_INIT([guestfs-tools], [1.48.3]) dnl The common/ subdirectory assumes this. In libguestfs it contains dnl the --with-extra parameter. Here we just define it to the version. diff --git a/customize/customize_run.ml b/customize/customize_run.ml index f2ee204..b365413 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -344,7 +344,7 @@ let run (g : G.guestfs) root (ops : ops) = message (f_"SSH key inject: %s") user; Ssh_key.do_ssh_inject_unix g user selector ) else - warning (f_"SSH key could be injected for this type of guest") + warning (f_"SSH key could not be injected for this type of guest") | `Truncate path -> message (f_"Truncating: %s") path; diff --git a/gnulib/lib/c-ctype.h b/gnulib/lib/c-ctype.h old mode 100755 new mode 100644 diff --git a/m4/guestfs-progs.m4 b/m4/guestfs-progs.m4 index 1af1dc8..74467d2 100644 --- a/m4/guestfs-progs.m4 +++ b/m4/guestfs-progs.m4 @@ -80,7 +80,7 @@ AS_IF([test "x$VALGRIND" != "xno"],[ # --read-inline-info=no is a temporary workaround for RHBZ#1662656. # Note we run libtool, not $(LIBTOOL) since the latter expands to # libtool-kill-dependency-libs.sh - VG='libtool --mode=execute $(VALGRIND) --vgdb=no --log-file=$(abs_top_builddir)/tmp/valgrind-%q{T}-%p.log --leak-check=full --error-exitcode=119 --suppressions=$(abs_top_srcdir)/valgrind-suppressions --trace-children=no --child-silent-after-fork=yes --run-libc-freeres=no --read-inline-info=no' + VG='libtool --mode=execute $(VALGRIND) --vgdb=no --leak-check=full --error-exitcode=119 --suppressions=$(abs_top_srcdir)/valgrind-suppressions --trace-children=no --child-silent-after-fork=yes --run-libc-freeres=no --read-inline-info=no' ],[ # No valgrind, so substitute VG with something that will break. VG=VALGRIND_IS_NOT_INSTALLED diff --git a/po-docs/ja/virt-alignment-scan.1 b/po-docs/ja/virt-alignment-scan.1 index 6e90d20..95d72ad 100644 --- a/po-docs/ja/virt-alignment-scan.1 +++ b/po-docs/ja/virt-alignment-scan.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-alignment-scan 1" -.TH virt-alignment-scan 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-alignment-scan 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-builder.1 b/po-docs/ja/virt-builder.1 index 4e54a66..c64ca52 100644 --- a/po-docs/ja/virt-builder.1 +++ b/po-docs/ja/virt-builder.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-builder 1" -.TH virt-builder 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-builder 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-cat.1 b/po-docs/ja/virt-cat.1 index 52c5468..806c52f 100644 --- a/po-docs/ja/virt-cat.1 +++ b/po-docs/ja/virt-cat.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-cat 1" -.TH virt-cat 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-cat 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-customize.1 b/po-docs/ja/virt-customize.1 index 2419e1f..4910081 100644 --- a/po-docs/ja/virt-customize.1 +++ b/po-docs/ja/virt-customize.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-customize 1" -.TH virt-customize 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-customize 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-df.1 b/po-docs/ja/virt-df.1 index e12e41e..dd92db5 100644 --- a/po-docs/ja/virt-df.1 +++ b/po-docs/ja/virt-df.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-df 1" -.TH virt-df 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-df 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-dib.1 b/po-docs/ja/virt-dib.1 index 7dc0d89..a30994d 100644 --- a/po-docs/ja/virt-dib.1 +++ b/po-docs/ja/virt-dib.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-dib 1" -.TH virt-dib 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-dib 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-diff.1 b/po-docs/ja/virt-diff.1 index 9cb01a1..90da57f 100644 --- a/po-docs/ja/virt-diff.1 +++ b/po-docs/ja/virt-diff.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-diff 1" -.TH virt-diff 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-diff 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-edit.1 b/po-docs/ja/virt-edit.1 index f65cd9f..53ca885 100644 --- a/po-docs/ja/virt-edit.1 +++ b/po-docs/ja/virt-edit.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-edit 1" -.TH virt-edit 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-edit 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-filesystems.1 b/po-docs/ja/virt-filesystems.1 index 9e9a01f..fca1e7d 100644 --- a/po-docs/ja/virt-filesystems.1 +++ b/po-docs/ja/virt-filesystems.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-filesystems 1" -.TH virt-filesystems 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-filesystems 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-format.1 b/po-docs/ja/virt-format.1 index 3a25455..209c73f 100644 --- a/po-docs/ja/virt-format.1 +++ b/po-docs/ja/virt-format.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-format 1" -.TH virt-format 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-format 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-get-kernel.1 b/po-docs/ja/virt-get-kernel.1 index a7a3df5..be20b98 100644 --- a/po-docs/ja/virt-get-kernel.1 +++ b/po-docs/ja/virt-get-kernel.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-get-kernel 1" -.TH virt-get-kernel 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-get-kernel 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-index-validate.1 b/po-docs/ja/virt-index-validate.1 index fe59b32..4c91394 100644 --- a/po-docs/ja/virt-index-validate.1 +++ b/po-docs/ja/virt-index-validate.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-index-validate 1" -.TH virt-index-validate 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-index-validate 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-inspector.1 b/po-docs/ja/virt-inspector.1 index 2d9a875..28703ab 100644 --- a/po-docs/ja/virt-inspector.1 +++ b/po-docs/ja/virt-inspector.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-inspector 1" -.TH virt-inspector 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-inspector 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-log.1 b/po-docs/ja/virt-log.1 index 6b01b62..3564363 100644 --- a/po-docs/ja/virt-log.1 +++ b/po-docs/ja/virt-log.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-log 1" -.TH virt-log 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-log 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-ls.1 b/po-docs/ja/virt-ls.1 index d8794ad..eae6811 100644 --- a/po-docs/ja/virt-ls.1 +++ b/po-docs/ja/virt-ls.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-ls 1" -.TH virt-ls 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-ls 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-make-fs.1 b/po-docs/ja/virt-make-fs.1 index ce66c9a..881e321 100644 --- a/po-docs/ja/virt-make-fs.1 +++ b/po-docs/ja/virt-make-fs.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-make-fs 1" -.TH virt-make-fs 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-make-fs 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-resize.1 b/po-docs/ja/virt-resize.1 index 81902cc..02b5440 100644 --- a/po-docs/ja/virt-resize.1 +++ b/po-docs/ja/virt-resize.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-resize 1" -.TH virt-resize 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-resize 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-sparsify.1 b/po-docs/ja/virt-sparsify.1 index 22c13f6..a348cf5 100644 --- a/po-docs/ja/virt-sparsify.1 +++ b/po-docs/ja/virt-sparsify.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-sparsify 1" -.TH virt-sparsify 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-sparsify 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-sysprep.1 b/po-docs/ja/virt-sysprep.1 index 1f3f184..75fe444 100644 --- a/po-docs/ja/virt-sysprep.1 +++ b/po-docs/ja/virt-sysprep.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-sysprep 1" -.TH virt-sysprep 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-sysprep 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/ja/virt-win-reg.1 b/po-docs/ja/virt-win-reg.1 index 8dc07be..500be60 100644 --- a/po-docs/ja/virt-win-reg.1 +++ b/po-docs/ja/virt-win-reg.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-win-reg 1" -.TH virt-win-reg 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-win-reg 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-alignment-scan.1 b/po-docs/uk/virt-alignment-scan.1 index f500984..15dc4e9 100644 --- a/po-docs/uk/virt-alignment-scan.1 +++ b/po-docs/uk/virt-alignment-scan.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-alignment-scan 1" -.TH virt-alignment-scan 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-alignment-scan 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-builder.1 b/po-docs/uk/virt-builder.1 index d151194..6826050 100644 --- a/po-docs/uk/virt-builder.1 +++ b/po-docs/uk/virt-builder.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-builder 1" -.TH virt-builder 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-builder 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-cat.1 b/po-docs/uk/virt-cat.1 index 0ffcf97..df92343 100644 --- a/po-docs/uk/virt-cat.1 +++ b/po-docs/uk/virt-cat.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-cat 1" -.TH virt-cat 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-cat 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-customize.1 b/po-docs/uk/virt-customize.1 index 29cd8c3..8e24185 100644 --- a/po-docs/uk/virt-customize.1 +++ b/po-docs/uk/virt-customize.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-customize 1" -.TH virt-customize 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-customize 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-df.1 b/po-docs/uk/virt-df.1 index e3222a0..bf9eed2 100644 --- a/po-docs/uk/virt-df.1 +++ b/po-docs/uk/virt-df.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-df 1" -.TH virt-df 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-df 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-dib.1 b/po-docs/uk/virt-dib.1 index a63a426..1265d4c 100644 --- a/po-docs/uk/virt-dib.1 +++ b/po-docs/uk/virt-dib.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-dib 1" -.TH virt-dib 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-dib 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-diff.1 b/po-docs/uk/virt-diff.1 index 0ad766b..8956504 100644 --- a/po-docs/uk/virt-diff.1 +++ b/po-docs/uk/virt-diff.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-diff 1" -.TH virt-diff 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-diff 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-edit.1 b/po-docs/uk/virt-edit.1 index 09706dc..32259e0 100644 --- a/po-docs/uk/virt-edit.1 +++ b/po-docs/uk/virt-edit.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-edit 1" -.TH virt-edit 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-edit 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-filesystems.1 b/po-docs/uk/virt-filesystems.1 index bf037d7..a1f83d7 100644 --- a/po-docs/uk/virt-filesystems.1 +++ b/po-docs/uk/virt-filesystems.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-filesystems 1" -.TH virt-filesystems 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-filesystems 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-format.1 b/po-docs/uk/virt-format.1 index 572b31a..a07b4bd 100644 --- a/po-docs/uk/virt-format.1 +++ b/po-docs/uk/virt-format.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-format 1" -.TH virt-format 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-format 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-get-kernel.1 b/po-docs/uk/virt-get-kernel.1 index e4c007f..b419c9d 100644 --- a/po-docs/uk/virt-get-kernel.1 +++ b/po-docs/uk/virt-get-kernel.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-get-kernel 1" -.TH virt-get-kernel 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-get-kernel 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-index-validate.1 b/po-docs/uk/virt-index-validate.1 index 9c0e603..95c687b 100644 --- a/po-docs/uk/virt-index-validate.1 +++ b/po-docs/uk/virt-index-validate.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-index-validate 1" -.TH virt-index-validate 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-index-validate 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-inspector.1 b/po-docs/uk/virt-inspector.1 index 42a649f..005e615 100644 --- a/po-docs/uk/virt-inspector.1 +++ b/po-docs/uk/virt-inspector.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-inspector 1" -.TH virt-inspector 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-inspector 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-log.1 b/po-docs/uk/virt-log.1 index 11f312e..ecdd435 100644 --- a/po-docs/uk/virt-log.1 +++ b/po-docs/uk/virt-log.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-log 1" -.TH virt-log 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-log 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-ls.1 b/po-docs/uk/virt-ls.1 index 3041213..ac7f419 100644 --- a/po-docs/uk/virt-ls.1 +++ b/po-docs/uk/virt-ls.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-ls 1" -.TH virt-ls 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-ls 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-make-fs.1 b/po-docs/uk/virt-make-fs.1 index 58aff21..a34d93b 100644 --- a/po-docs/uk/virt-make-fs.1 +++ b/po-docs/uk/virt-make-fs.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-make-fs 1" -.TH virt-make-fs 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-make-fs 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-resize.1 b/po-docs/uk/virt-resize.1 index edf6070..3128b65 100644 --- a/po-docs/uk/virt-resize.1 +++ b/po-docs/uk/virt-resize.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-resize 1" -.TH virt-resize 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-resize 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-sparsify.1 b/po-docs/uk/virt-sparsify.1 index 2d20543..05323a3 100644 --- a/po-docs/uk/virt-sparsify.1 +++ b/po-docs/uk/virt-sparsify.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-sparsify 1" -.TH virt-sparsify 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-sparsify 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-sysprep.1 b/po-docs/uk/virt-sysprep.1 index 929f715..ec5983c 100644 --- a/po-docs/uk/virt-sysprep.1 +++ b/po-docs/uk/virt-sysprep.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-sysprep 1" -.TH virt-sysprep 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-sysprep 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po-docs/uk/virt-win-reg.1 b/po-docs/uk/virt-win-reg.1 index e7d7d3f..143fc32 100644 --- a/po-docs/uk/virt-win-reg.1 +++ b/po-docs/uk/virt-win-reg.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Podwrapper::Man 1.48.2 (Pod::Simple 3.43) +.\" Automatically generated by Podwrapper::Man 1.48.3 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "virt-win-reg 1" -.TH virt-win-reg 1 "2022-05-26" "guestfs-tools-1.48.2" "Virtualization Support" +.TH virt-win-reg 1 "2023-01-11" "guestfs-tools-1.48.3" "Virtualization Support" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/po/guestfs-tools.pot b/po/guestfs-tools.pot index 1524348..1536714 100644 --- a/po/guestfs-tools.pot +++ b/po/guestfs-tools.pot @@ -6,10 +6,10 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: guestfs-tools 1.48.2\n" +"Project-Id-Version: guestfs-tools 1.48.3\n" "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/enter_bug.cgi?" "component=libguestfs&product=Virtualization+Tools\n" -"POT-Creation-Date: 2022-05-26 11:25+0100\n" +"POT-Creation-Date: 2023-01-11 10:15+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1134,7 +1134,7 @@ msgstr "" msgid "Full name:" msgstr "" -#: builder/sigchecker.ml:110 +#: builder/sigchecker.ml:111 msgid "" "GPG failure: could not run GPG the first time\n" "Use the ‘-v’ option and look for earlier error messages." @@ -1146,7 +1146,7 @@ msgid "" "Use the ‘-v’ option and look for earlier error messages." msgstr "" -#: builder/sigchecker.ml:203 +#: builder/sigchecker.ml:204 msgid "" "GPG failure: could not verify digital signature of file\n" "Try:\n" @@ -1785,7 +1785,7 @@ msgid "SOURCE:DEST" msgstr "" #: customize/customize_run.ml:347 -msgid "SSH key could be injected for this type of guest" +msgid "SSH key could not be injected for this type of guest" msgstr "" #: customize/customize_run.ml:344 @@ -2412,7 +2412,7 @@ msgstr "" msgid "command '%s' not valid, see the man page" msgstr "" -#: builder/sigchecker.ml:123 +#: builder/sigchecker.ml:124 msgid "" "could not export public key\n" "Use the ‘-v’ option and look for earlier error messages." @@ -2567,7 +2567,7 @@ msgstr "" msgid "file" msgstr "" -#: builder/sigchecker.ml:220 +#: builder/sigchecker.ml:221 msgid "" "fingerprint of signature does not match the expected fingerprint!\n" " found fingerprint: %s\n" @@ -3046,7 +3046,7 @@ msgstr "" msgid "the value of the key ‘%s’ is not an object" msgstr "" -#: builder/sigchecker.ml:173 +#: builder/sigchecker.ml:174 msgid "" "there is no detached signature file\n" "This probably means the index file is missing a sig=... line.\n" diff --git a/run.in b/run.in index 7b40187..a19d262 100755 --- a/run.in +++ b/run.in @@ -57,10 +57,6 @@ prepend() s="$(cd @abs_srcdir@ && pwd)" b="$(cd @abs_builddir@ && pwd)" -# Set T to current date & time (mainly for valgrind logfile name). -T=`date +%Y%m%d.%H.%M.%S` -export T - # Set tmpdir and cachedir so the appliance doesn't conflict with # globally installed libguestfs. # @@ -101,9 +97,14 @@ if [ -z "$VIRT_BUILDER_DIRS" ]; then fi # This is a cheap way to find some use-after-free and uninitialized -# read problems when using glibc. -random_val="$(@AWK@ 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null)" -export MALLOC_PERTURB_=$random_val +# read problems when using glibc. But if we are valgrinding then +# don't use this because it can stop valgrind from working. +if [ -z "$VG" ]; then + random_val="$(@AWK@ 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null)" + LD_PRELOAD="${LD_PRELOAD:+"$LD_PRELOAD:"}libc_malloc_debug.so.0" + GLIBC_TUNABLES=glibc.malloc.check=1:glibc.malloc.perturb=$random_val + export LD_PRELOAD GLIBC_TUNABLES +fi # Do we have libtool? If we have it then we can use it to make # running valgrind simpler. However don't depend on it. diff --git a/test-data/phony-guests/fedora.db b/test-data/phony-guests/fedora.db index b9f1699..908f304 100644 Binary files a/test-data/phony-guests/fedora.db and b/test-data/phony-guests/fedora.db differ diff --git a/tmp/.gitignore b/tmp/.gitignore index 912a946..93643c4 100644 --- a/tmp/.gitignore +++ b/tmp/.gitignore @@ -3,4 +3,3 @@ /libguestfs??????/ /run-* /v2vovl*.qcow2 -/valgrind-*.log diff --git a/valgrind-suppressions b/valgrind-suppressions index c651c10..40f6951 100644 --- a/valgrind-suppressions +++ b/valgrind-suppressions @@ -172,6 +172,24 @@ fun:caml_main } +# Valgrind bug affecting OCaml 4.14 +# https://bugs.kde.org/show_bug.cgi?id=455711 +{ + caml_terminate_signals_uninitialized_sigaltstack + Memcheck:Param + sigaltstack(ss) + fun:sigaltstack + fun:caml_terminate_signals +} + +{ + caml_stop_stack_overflow_detection_uninitialized_sigaltstack + Memcheck:Param + sigaltstack(ss) + fun:sigaltstack + fun:caml_stop_stack_overflow_detection +} + # The OCaml PCRE.compile function calls pcre_compile2 which allocates # memory. If these regexps are stored in a global variable then they # can never be freed. This is not really a bug, so ignore it.