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 |
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 */
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
--- /dev/null
+[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.
+
--- /dev/null
+# 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
--- /dev/null
+# 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'
+
| "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
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)
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
--- /dev/null
+# 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
--- /dev/null
+# 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'
+
--- /dev/null
+# 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
--- /dev/null
+# 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'
+
--- /dev/null
+# 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
--- /dev/null
+# 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'
+
#! /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,
# 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=''
# 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]...
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
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.
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
# 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
# --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
# 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
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\\"
# 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.
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;
# --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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
-.\" 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:
.\" ========================================================================
.\" ========================================================================
.\"
.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
#, 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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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."
"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"
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
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."
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"
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"
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.
#
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.
/libguestfs??????/
/run-*
/v2vovl*.qcow2
-/valgrind-*.log
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.