From 2e4089f30007e79bc157c775cfd3b326d22f2992 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 19 Jul 2012 15:45:27 +0100 Subject: [PATCH] build: Rename most C files that contain underscore with dash. This is just code motion. Some files cannot be renamed. Notably rpcgen input and output files must not contain dash characters, else rpcgen breaks. --- .gitignore | 14 +- daemon/Makefile.am | 12 +- daemon/{echo_daemon.c => echo-daemon.c} | 0 fish/Makefile.am | 24 +- fish/{cmds_gperf.h => cmds-gperf.h} | 0 fish/{prep_boot.c => prep-boot.c} | 0 fish/{prep_disk.c => prep-disk.c} | 0 fish/{prep_fs.c => prep-fs.c} | 0 fish/{prep_lv.c => prep-lv.c} | 0 fish/{prep_part.c => prep-part.c} | 0 fish/{test-read_file.sh => test-read-file.sh} | 0 generator/generator_fish.ml | 4 +- generator/generator_main.ml | 6 +- generator/generator_ocaml.ml | 2 +- ocaml/Makefile.am | 6 +- ocaml/{guestfs_c.c => guestfs-c.c} | 2 +- ocaml/{guestfs_c.h => guestfs-c.h} | 0 po-docs/ja.po | 1961 +++++++++-------- po-docs/libguestfs-docs.pot | 1659 +++++++------- po-docs/uk.po | 1889 ++++++++-------- po/POTFILES | 38 +- resize/Makefile.am | 4 +- resize/{progress_c.c => progress-c.c} | 0 sparsify/Makefile.am | 4 +- sparsify/{progress_c.c => progress-c.c} | 0 src/Makefile.am | 20 +- src/{inspect_apps.c => inspect-apps.c} | 0 src/{inspect_fs_cd.c => inspect-fs-cd.c} | 0 src/{inspect_fs_unix.c => inspect-fs-unix.c} | 0 ...pect_fs_windows.c => inspect-fs-windows.c} | 0 src/{inspect_fs.c => inspect-fs.c} | 0 src/{inspect_icon.c => inspect-icon.c} | 0 tests/xml/Makefile.am | 2 +- ...{fake_libvirt_xml.c => fake-libvirt-xml.c} | 0 34 files changed, 2851 insertions(+), 2796 deletions(-) rename daemon/{echo_daemon.c => echo-daemon.c} (100%) rename fish/{cmds_gperf.h => cmds-gperf.h} (100%) rename fish/{prep_boot.c => prep-boot.c} (100%) rename fish/{prep_disk.c => prep-disk.c} (100%) rename fish/{prep_fs.c => prep-fs.c} (100%) rename fish/{prep_lv.c => prep-lv.c} (100%) rename fish/{prep_part.c => prep-part.c} (100%) rename fish/{test-read_file.sh => test-read-file.sh} (100%) rename ocaml/{guestfs_c.c => guestfs-c.c} (99%) rename ocaml/{guestfs_c.h => guestfs-c.h} (100%) rename resize/{progress_c.c => progress-c.c} (100%) rename sparsify/{progress_c.c => progress-c.c} (100%) rename src/{inspect_apps.c => inspect-apps.c} (100%) rename src/{inspect_fs_cd.c => inspect-fs-cd.c} (100%) rename src/{inspect_fs_unix.c => inspect-fs-unix.c} (100%) rename src/{inspect_fs_windows.c => inspect-fs-windows.c} (100%) rename src/{inspect_fs.c => inspect-fs.c} (100%) rename src/{inspect_icon.c => inspect-icon.c} (100%) rename tests/xml/{fake_libvirt_xml.c => fake-libvirt-xml.c} (100%) diff --git a/.gitignore b/.gitignore index e223d3b00..de5a688d5 100644 --- a/.gitignore +++ b/.gitignore @@ -61,8 +61,8 @@ Makefile.in /csharp/Libguestfs.cs /daemon/actions.h /daemon/errnostring.c -/daemon/errnostring_gperf.c -/daemon/errnostring_gperf.gperf +/daemon/errnostring-gperf.c +/daemon/errnostring-gperf.gperf /daemon/errnostring.h /daemon/guestfsd /daemon/guestfsd.exe @@ -104,8 +104,8 @@ Makefile.in /examples/stamp-guestfs-testing.pod /examples/virt-dhcp-address /fish/cmds.c -/fish/cmds_gperf.c -/fish/cmds_gperf.gperf +/fish/cmds-gperf.c +/fish/cmds-gperf.gperf /fish/completion.c /fish/event-names.c /fish/fish-cmds.h @@ -227,7 +227,7 @@ Makefile.in /ocaml/examples/guestfs-ocaml.3 /ocaml/examples/inspect_vm /ocaml/examples/stamp-guestfs-ocaml.pod -/ocaml/guestfs_c_actions.c +/ocaml/guestfs-c-actions.c /ocaml/guestfs.ml /ocaml/guestfs.mli /ocamlinit-stamp @@ -336,8 +336,8 @@ Makefile.in /src/actions.c /src/bindtests.c /src/errnostring.c -/src/errnostring_gperf.c -/src/errnostring_gperf.gperf +/src/errnostring-gperf.c +/src/errnostring-gperf.gperf /src/errnostring.h /src/guestfs.3 /src/guestfs-actions.pod diff --git a/daemon/Makefile.am b/daemon/Makefile.am index afe88741a..c43807e58 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -28,8 +28,8 @@ BUILT_SOURCES = \ $(generator_built) \ guestfs_protocol.c \ guestfs_protocol.h \ - errnostring_gperf.c \ - errnostring_gperf.gperf \ + errnostring-gperf.c \ + errnostring-gperf.gperf \ errnostring.c \ errnostring.h @@ -57,16 +57,16 @@ $(libsrcdir)/guestfs_protocol.h: force # of warnings so we must compile it in a separate mini-library. noinst_LIBRARIES += liberrnostring.a liberrnostring_a_SOURCES = \ - errnostring_gperf.c \ + errnostring-gperf.c \ errnostring.h \ errnostring.c liberrnostring_a_CFLAGS = -errnostring_gperf.c: errnostring_gperf.gperf +errnostring-gperf.c: errnostring-gperf.gperf rm -f $@ $(GPERF) -t $< > $@-t mv $@-t $@ -errnostring_gperf.gperf: $(libsrcdir)/errnostring_gperf.gperf +errnostring-gperf.gperf: $(libsrcdir)/errnostring-gperf.gperf rm -f $@ ln $< $@ errnostring.c: $(libsrcdir)/errnostring.c @@ -106,7 +106,7 @@ guestfsd_SOURCES = \ dmesg.c \ dropcaches.c \ du.c \ - echo_daemon.c \ + echo-daemon.c \ ext2.c \ fallocate.c \ file.c \ diff --git a/daemon/echo_daemon.c b/daemon/echo-daemon.c similarity index 100% rename from daemon/echo_daemon.c rename to daemon/echo-daemon.c diff --git a/fish/Makefile.am b/fish/Makefile.am index 8e45294a5..c7c1867d7 100644 --- a/fish/Makefile.am +++ b/fish/Makefile.am @@ -28,7 +28,7 @@ bin_PROGRAMS = guestfish generator_built = \ cmds.c \ - cmds_gperf.gperf \ + cmds-gperf.gperf \ completion.c \ event-names.c \ fish-cmds.h \ @@ -39,7 +39,7 @@ generator_built = \ BUILT_SOURCES = \ $(generator_built) \ - cmds_gperf.c \ + cmds-gperf.c \ rc_protocol.h \ rc_protocol.c @@ -76,7 +76,7 @@ guestfish_SOURCES = \ $(generator_built) \ $(SHARED_SOURCE_FILES) \ alloc.c \ - cmds_gperf.h \ + cmds-gperf.h \ copy.c \ destpaths.c \ display.c \ @@ -92,11 +92,11 @@ guestfish_SOURCES = \ man.c \ more.c \ prep.c \ - prep_disk.c \ - prep_part.c \ - prep_fs.c \ - prep_lv.c \ - prep_boot.c \ + prep-disk.c \ + prep-part.c \ + prep-fs.c \ + prep-lv.c \ + prep-boot.c \ rc.c \ reopen.c \ setenv.c \ @@ -111,10 +111,10 @@ librc_protocol_la_CFLAGS = -Wall -Wno-unused -fno-strict-aliasing # Build the command lookup perfect hash code. The generated code has # lots of warnings so we must compile it in a separate mini-library. -libcmds_la_SOURCES = cmds_gperf.c +libcmds_la_SOURCES = cmds-gperf.c libcmds_la_CFLAGS = -cmds_gperf.c: cmds_gperf.gperf +cmds-gperf.c: cmds-gperf.gperf rm -f $@ $(GPERF) -t $< > $@-t mv $@-t $@ @@ -246,7 +246,7 @@ TESTS += \ test-find0.sh \ test-glob.sh \ test-mount-local.sh \ - test-read_file.sh \ + test-read-file.sh \ test-remote.sh \ test-reopen.sh \ test-stringlist.sh \ @@ -264,7 +264,7 @@ EXTRA_DIST += \ test-find0.sh \ test-glob.sh \ test-mount-local.sh \ - test-read_file.sh \ + test-read-file.sh \ test-remote.sh \ test-reopen.sh \ test-stringlist.sh \ diff --git a/fish/cmds_gperf.h b/fish/cmds-gperf.h similarity index 100% rename from fish/cmds_gperf.h rename to fish/cmds-gperf.h diff --git a/fish/prep_boot.c b/fish/prep-boot.c similarity index 100% rename from fish/prep_boot.c rename to fish/prep-boot.c diff --git a/fish/prep_disk.c b/fish/prep-disk.c similarity index 100% rename from fish/prep_disk.c rename to fish/prep-disk.c diff --git a/fish/prep_fs.c b/fish/prep-fs.c similarity index 100% rename from fish/prep_fs.c rename to fish/prep-fs.c diff --git a/fish/prep_lv.c b/fish/prep-lv.c similarity index 100% rename from fish/prep_lv.c rename to fish/prep-lv.c diff --git a/fish/prep_part.c b/fish/prep-part.c similarity index 100% rename from fish/prep_part.c rename to fish/prep-part.c diff --git a/fish/test-read_file.sh b/fish/test-read-file.sh similarity index 100% rename from fish/test-read_file.sh rename to fish/test-read-file.sh diff --git a/generator/generator_fish.ml b/generator/generator_fish.ml index aba46e965..a85d53d5f 100644 --- a/generator/generator_fish.ml +++ b/generator/generator_fish.ml @@ -73,7 +73,7 @@ let generate_fish_cmds () = pr "#include \"fish.h\"\n"; pr "#include \"fish-cmds.h\"\n"; pr "#include \"options.h\"\n"; - pr "#include \"cmds_gperf.h\"\n"; + pr "#include \"cmds-gperf.h\"\n"; pr "\n"; pr "/* Valid suffixes allowed for numbers. See Gnulib xstrtol function. */\n"; pr "static const char *xstrtol_suffixes = \"0kKMGTPEZY\";\n"; @@ -684,7 +684,7 @@ and generate_fish_cmds_gperf () = #include #include -#include \"cmds_gperf.h\" +#include \"cmds-gperf.h\" "; diff --git a/generator/generator_main.ml b/generator/generator_main.ml index e51bf830d..9a1da9b18 100644 --- a/generator/generator_main.ml +++ b/generator/generator_main.ml @@ -86,7 +86,7 @@ Run it from the top source directory using the command output_to "src/guestfs-structs.pod" generate_structs_pod; output_to "src/guestfs-actions.pod" generate_actions_pod; output_to "src/guestfs-availability.pod" generate_availability_pod; - output_to "src/errnostring_gperf.gperf" generate_errnostring_gperf; + output_to "src/errnostring-gperf.gperf" generate_errnostring_gperf; output_to "src/errnostring.c" generate_errnostring_c; output_to "src/errnostring.h" generate_errnostring_h; output_to "src/MAX_PROC_NR" generate_max_proc_nr; @@ -97,7 +97,7 @@ Run it from the top source directory using the command output_to "daemon/optgroups.c" generate_daemon_optgroups_c; output_to "daemon/optgroups.h" generate_daemon_optgroups_h; output_to "tests/c-api/tests.c" generate_tests; - output_to "fish/cmds_gperf.gperf" generate_fish_cmds_gperf; + output_to "fish/cmds-gperf.gperf" generate_fish_cmds_gperf; output_to "fish/cmds.c" generate_fish_cmds; output_to "fish/completion.c" generate_fish_completion; output_to "fish/event-names.c" generate_fish_event_names; @@ -108,7 +108,7 @@ Run it from the top source directory using the command output_to "fish/prepopts.h" generate_fish_prep_options_h; output_to "ocaml/guestfs.mli" generate_ocaml_mli; output_to "ocaml/guestfs.ml" generate_ocaml_ml; - output_to "ocaml/guestfs_c_actions.c" generate_ocaml_c; + output_to "ocaml/guestfs-c-actions.c" generate_ocaml_c; output_to "ocaml/bindtests.ml" generate_ocaml_bindtests; output_to "perl/Guestfs.xs" generate_perl_xs; output_to "perl/lib/Sys/Guestfs.pm" generate_perl_pm; diff --git a/generator/generator_ocaml.ml b/generator/generator_ocaml.ml index 392f9cb6f..99a0fc6b3 100644 --- a/generator/generator_ocaml.ml +++ b/generator/generator_ocaml.ml @@ -314,7 +314,7 @@ and generate_ocaml_c () = #include \"guestfs.h\" -#include \"guestfs_c.h\" +#include \"guestfs-c.h\" /* Copy a hashtable of string pairs into an assoc-list. We return * the list in reverse order, but hashtables aren't supposed to be diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am index e2c4667bb..d91eb5c14 100644 --- a/ocaml/Makefile.am +++ b/ocaml/Makefile.am @@ -26,13 +26,13 @@ include $(top_srcdir)/subdir-rules.mk generator_built = \ guestfs.mli \ guestfs.ml \ - guestfs_c_actions.c \ + guestfs-c-actions.c \ bindtests.ml EXTRA_DIST = \ $(generator_built) \ .depend \ - guestfs_c.c guestfs_c.h \ + guestfs-c.c guestfs-c.h \ html/.gitignore \ META.in \ run-bindtests \ @@ -68,7 +68,7 @@ libguestfsocaml_a_CFLAGS = \ -I$(top_srcdir)/src -I$(top_builddir)/src \ $(WARN_CFLAGS) $(WERROR_CFLAGS) \ -fPIC -libguestfsocaml_a_SOURCES = guestfs_c.c guestfs_c_actions.c +libguestfsocaml_a_SOURCES = guestfs-c.c guestfs-c-actions.c if HAVE_OCAMLDOC diff --git a/ocaml/guestfs_c.c b/ocaml/guestfs-c.c similarity index 99% rename from ocaml/guestfs_c.c rename to ocaml/guestfs-c.c index fc7f9d04f..469110dce 100644 --- a/ocaml/guestfs_c.c +++ b/ocaml/guestfs-c.c @@ -33,7 +33,7 @@ #include #include -#include "guestfs_c.h" +#include "guestfs-c.h" static value **get_all_event_callbacks (guestfs_h *g, size_t *len_rtn); static void event_callback_wrapper (guestfs_h *g, void *data, uint64_t event, int event_handle, int flags, const char *buf, size_t buf_len, const uint64_t *array, size_t array_len); diff --git a/ocaml/guestfs_c.h b/ocaml/guestfs-c.h similarity index 100% rename from ocaml/guestfs_c.h rename to ocaml/guestfs-c.h diff --git a/po-docs/ja.po b/po-docs/ja.po index 8756d6935..5d0429124 100644 --- a/po-docs/ja.po +++ b/po-docs/ja.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: libguestfs\n" "Report-Msgid-Bugs-To: libguestfs@redhat.com\n" -"POT-Creation-Date: 2012-07-18 21:04+0200\n" +"POT-Creation-Date: 2012-07-19 16:02+0200\n" "PO-Revision-Date: 2012-07-10 17:15+0000\n" "Last-Translator: rjones \n" "Language-Team: Japanese \n" @@ -3429,7 +3429,7 @@ msgstr "" "readable> オプションが指定されていなければ、バイト単位で表示されます。" #. type: =head2 -#: ../cat/virt-ls.pod:181 ../fish/guestfish-actions.pod:5108 +#: ../cat/virt-ls.pod:181 ../fish/guestfish-actions.pod:5115 msgid "path" msgstr "パス" @@ -9262,20 +9262,20 @@ msgstr "" #: ../fish/guestfish-actions.pod:1324 ../fish/guestfish-actions.pod:1851 #: ../fish/guestfish-actions.pod:1865 ../fish/guestfish-actions.pod:3068 #: ../fish/guestfish-actions.pod:3899 ../fish/guestfish-actions.pod:4315 -#: ../fish/guestfish-actions.pod:5043 ../fish/guestfish-actions.pod:5291 -#: ../fish/guestfish-actions.pod:5311 ../fish/guestfish-actions.pod:5330 -#: ../fish/guestfish-actions.pod:5368 ../fish/guestfish-actions.pod:6150 -#: ../fish/guestfish-actions.pod:6278 ../src/guestfs-actions.pod:10 +#: ../fish/guestfish-actions.pod:5050 ../fish/guestfish-actions.pod:5298 +#: ../fish/guestfish-actions.pod:5318 ../fish/guestfish-actions.pod:5337 +#: ../fish/guestfish-actions.pod:5375 ../fish/guestfish-actions.pod:6157 +#: ../fish/guestfish-actions.pod:6285 ../src/guestfs-actions.pod:10 #: ../src/guestfs-actions.pod:301 ../src/guestfs-actions.pod:322 #: ../src/guestfs-actions.pod:1835 ../src/guestfs-actions.pod:1892 #: ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:2260 #: ../src/guestfs-actions.pod:2981 ../src/guestfs-actions.pod:3002 #: ../src/guestfs-actions.pod:4700 ../src/guestfs-actions.pod:6059 -#: ../src/guestfs-actions.pod:6867 ../src/guestfs-actions.pod:7961 -#: ../src/guestfs-actions.pod:8272 ../src/guestfs-actions.pod:8313 -#: ../src/guestfs-actions.pod:8344 ../src/guestfs-actions.pod:8404 -#: ../src/guestfs-actions.pod:9542 ../src/guestfs-actions.pod:9670 -#: ../src/guestfs-actions.pod:9892 +#: ../src/guestfs-actions.pod:6867 ../src/guestfs-actions.pod:7968 +#: ../src/guestfs-actions.pod:8279 ../src/guestfs-actions.pod:8320 +#: ../src/guestfs-actions.pod:8351 ../src/guestfs-actions.pod:8411 +#: ../src/guestfs-actions.pod:9549 ../src/guestfs-actions.pod:9677 +#: ../src/guestfs-actions.pod:9899 msgid "" "Deprecated functions will not be removed from the API, but the fact that " "they are deprecated indicates that there are problems with correct use of " @@ -9456,8 +9456,8 @@ msgstr "" #: ../fish/guestfish-actions.pod:3882 ../fish/guestfish-actions.pod:3915 #: ../fish/guestfish-actions.pod:4078 ../fish/guestfish-actions.pod:4108 #: ../fish/guestfish-actions.pod:4251 ../fish/guestfish-actions.pod:4267 -#: ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:5019 -#: ../fish/guestfish-actions.pod:5752 ../fish/guestfish-actions.pod:5834 +#: ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:5026 +#: ../fish/guestfish-actions.pod:5759 ../fish/guestfish-actions.pod:5841 msgid "" "This command has one or more optional arguments. See L." msgstr "" @@ -10280,10 +10280,10 @@ msgstr "" #: ../fish/guestfish-actions.pod:985 ../fish/guestfish-actions.pod:1168 #: ../fish/guestfish-actions.pod:1187 ../fish/guestfish-actions.pod:1610 #: ../fish/guestfish-actions.pod:4228 ../fish/guestfish-actions.pod:4249 -#: ../fish/guestfish-actions.pod:5608 ../fish/guestfish-actions.pod:5620 -#: ../fish/guestfish-actions.pod:5631 ../fish/guestfish-actions.pod:5642 -#: ../fish/guestfish-actions.pod:5773 ../fish/guestfish-actions.pod:5782 -#: ../fish/guestfish-actions.pod:5847 ../fish/guestfish-actions.pod:5870 +#: ../fish/guestfish-actions.pod:5615 ../fish/guestfish-actions.pod:5627 +#: ../fish/guestfish-actions.pod:5638 ../fish/guestfish-actions.pod:5649 +#: ../fish/guestfish-actions.pod:5780 ../fish/guestfish-actions.pod:5789 +#: ../fish/guestfish-actions.pod:5854 ../fish/guestfish-actions.pod:5877 msgid "Use C<-> instead of a filename to read/write from stdin/stdout." msgstr "" @@ -10727,9 +10727,9 @@ msgstr "" #. type: textblock #: ../fish/guestfish-actions.pod:656 ../fish/guestfish-actions.pod:3584 -#: ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:5682 +#: ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:5689 #: ../src/guestfs-actions.pod:983 ../src/guestfs-actions.pod:5563 -#: ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:8914 +#: ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:8921 msgid "The optional parameters are:" msgstr "オプションのパラメーターは次のとおりです:" @@ -11099,13 +11099,13 @@ msgstr "" #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2145 #: ../fish/guestfish-actions.pod:4579 ../fish/guestfish-actions.pod:4594 #: ../fish/guestfish-actions.pod:4670 ../fish/guestfish-actions.pod:4687 -#: ../fish/guestfish-actions.pod:4702 ../fish/guestfish-actions.pod:5449 -#: ../fish/guestfish-actions.pod:5495 ../fish/guestfish-actions.pod:5580 -#: ../fish/guestfish-actions.pod:5595 ../fish/guestfish-actions.pod:6114 -#: ../fish/guestfish-actions.pod:6126 ../fish/guestfish-actions.pod:6144 -#: ../fish/guestfish-actions.pod:6172 ../fish/guestfish-actions.pod:6182 -#: ../fish/guestfish-actions.pod:6250 ../fish/guestfish-actions.pod:6260 -#: ../fish/guestfish-actions.pod:6289 ../fish/guestfish-actions.pod:6299 +#: ../fish/guestfish-actions.pod:4702 ../fish/guestfish-actions.pod:5456 +#: ../fish/guestfish-actions.pod:5502 ../fish/guestfish-actions.pod:5587 +#: ../fish/guestfish-actions.pod:5602 ../fish/guestfish-actions.pod:6121 +#: ../fish/guestfish-actions.pod:6133 ../fish/guestfish-actions.pod:6151 +#: ../fish/guestfish-actions.pod:6179 ../fish/guestfish-actions.pod:6189 +#: ../fish/guestfish-actions.pod:6257 ../fish/guestfish-actions.pod:6267 +#: ../fish/guestfish-actions.pod:6296 ../fish/guestfish-actions.pod:6306 #: ../src/guestfs-actions.pod:1256 ../src/guestfs-actions.pod:1435 #: ../src/guestfs-actions.pod:1455 ../src/guestfs-actions.pod:2195 #: ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2317 @@ -11115,13 +11115,13 @@ msgstr "" #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3444 #: ../src/guestfs-actions.pod:7248 ../src/guestfs-actions.pod:7274 #: ../src/guestfs-actions.pod:7405 ../src/guestfs-actions.pod:7431 -#: ../src/guestfs-actions.pod:7455 ../src/guestfs-actions.pod:8542 -#: ../src/guestfs-actions.pod:8597 ../src/guestfs-actions.pod:8743 -#: ../src/guestfs-actions.pod:8767 ../src/guestfs-actions.pod:9634 -#: ../src/guestfs-actions.pod:9654 ../src/guestfs-actions.pod:9687 -#: ../src/guestfs-actions.pod:9723 ../src/guestfs-actions.pod:9742 -#: ../src/guestfs-actions.pod:9858 ../src/guestfs-actions.pod:9877 -#: ../src/guestfs-actions.pod:9923 ../src/guestfs-actions.pod:9942 +#: ../src/guestfs-actions.pod:7455 ../src/guestfs-actions.pod:8549 +#: ../src/guestfs-actions.pod:8604 ../src/guestfs-actions.pod:8750 +#: ../src/guestfs-actions.pod:8774 ../src/guestfs-actions.pod:9641 +#: ../src/guestfs-actions.pod:9661 ../src/guestfs-actions.pod:9694 +#: ../src/guestfs-actions.pod:9730 ../src/guestfs-actions.pod:9749 +#: ../src/guestfs-actions.pod:9865 ../src/guestfs-actions.pod:9884 +#: ../src/guestfs-actions.pod:9930 ../src/guestfs-actions.pod:9949 msgid "" "Because of the message protocol, there is a transfer limit of somewhere " "between 2MB and 4MB. See L." @@ -11927,8 +11927,8 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:1164 ../fish/guestfish-actions.pod:5843 -#: ../src/guestfs-actions.pod:1990 ../src/guestfs-actions.pod:9166 +#: ../fish/guestfish-actions.pod:1164 ../fish/guestfish-actions.pod:5850 +#: ../src/guestfs-actions.pod:1990 ../src/guestfs-actions.pod:9173 msgid "C can also be a named pipe." msgstr "C は名前付きパイプを使えます。" @@ -13151,8 +13151,8 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:1727 ../fish/guestfish-actions.pod:5015 -#: ../src/guestfs-actions.pod:2847 ../src/guestfs-actions.pod:7904 +#: ../fish/guestfish-actions.pod:1727 ../fish/guestfish-actions.pod:5022 +#: ../src/guestfs-actions.pod:2847 ../src/guestfs-actions.pod:7911 msgid "" "These attributes are only present when the file is located on an ext2/3/4 " "filesystem. Using this call on other filesystem types will result in an " @@ -13508,9 +13508,9 @@ msgstr "" #. type: textblock #: ../fish/guestfish-actions.pod:1880 ../fish/guestfish-actions.pod:1937 -#: ../fish/guestfish-actions.pod:5088 ../fish/guestfish-actions.pod:5192 +#: ../fish/guestfish-actions.pod:5095 ../fish/guestfish-actions.pod:5199 #: ../src/guestfs-actions.pod:3026 ../src/guestfs-actions.pod:3118 -#: ../src/guestfs-actions.pod:8031 ../src/guestfs-actions.pod:8159 +#: ../src/guestfs-actions.pod:8038 ../src/guestfs-actions.pod:8166 msgid "" "For more information on the architecture of libguestfs, see L." msgstr "" @@ -14098,8 +14098,8 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:2114 ../fish/guestfish-actions.pod:5593 -#: ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:8761 +#: ../fish/guestfish-actions.pod:2114 ../fish/guestfish-actions.pod:5600 +#: ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:8768 msgid "If the parameter C is zero, this returns an empty list." msgstr "パラメーター C が 0 ならば、空の一覧を返します。" @@ -16752,8 +16752,8 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:3282 ../fish/guestfish-actions.pod:5428 -#: ../src/guestfs-actions.pod:5068 ../src/guestfs-actions.pod:8501 +#: ../fish/guestfish-actions.pod:3282 ../fish/guestfish-actions.pod:5435 +#: ../src/guestfs-actions.pod:5068 ../src/guestfs-actions.pod:8508 msgid "Returns file information for the given C." msgstr "与えられた C のファイル情報を返します。" @@ -18734,8 +18734,8 @@ msgstr "" #. type: textblock #: ../fish/guestfish-actions.pod:4106 ../fish/guestfish-actions.pod:4130 -#: ../fish/guestfish-actions.pod:5832 ../src/guestfs-actions.pod:6441 -#: ../src/guestfs-actions.pod:6490 ../src/guestfs-actions.pod:9130 +#: ../fish/guestfish-actions.pod:5839 ../src/guestfs-actions.pod:6441 +#: ../src/guestfs-actions.pod:6490 ../src/guestfs-actions.pod:9137 msgid "See L for full documentation." msgstr "完全なドキュメントは L を参照してください。" @@ -19173,8 +19173,8 @@ msgid "" msgstr "" #. type: =item -#: ../fish/guestfish-actions.pod:4287 ../fish/guestfish-actions.pod:5686 -#: ../src/guestfs-actions.pod:6815 ../src/guestfs-actions.pod:8918 +#: ../fish/guestfish-actions.pod:4287 ../fish/guestfish-actions.pod:5693 +#: ../src/guestfs-actions.pod:6815 ../src/guestfs-actions.pod:8925 msgid "C" msgstr "C" @@ -20766,34 +20766,53 @@ msgstr "" #. type: =item #: ../fish/guestfish-actions.pod:4952 ../src/guestfs-actions.pod:7818 -msgid "C>" -msgstr "C>" +#, fuzzy +#| msgid "B<-d libvirt-domain>" +msgid "C" +msgstr "B<-d libvirt-domain>" -#. type: textblock +#. type: =item #: ../fish/guestfish-actions.pod:4954 ../src/guestfs-actions.pod:7820 -msgid "Connect to the Unix domain socket I." +msgid "C>" msgstr "" #. type: textblock #: ../fish/guestfish-actions.pod:4956 ../src/guestfs-actions.pod:7822 msgid "" +"Use libvirt to launch the appliance. The optional I is the libvirt " +"connection URI to use (see L)." +msgstr "" + +#. type: =item +#: ../fish/guestfish-actions.pod:4959 ../src/guestfs-actions.pod:7825 +msgid "C>" +msgstr "C>" + +#. type: textblock +#: ../fish/guestfish-actions.pod:4961 ../src/guestfs-actions.pod:7827 +msgid "Connect to the Unix domain socket I." +msgstr "" + +#. type: textblock +#: ../fish/guestfish-actions.pod:4963 ../src/guestfs-actions.pod:7829 +msgid "" "This method lets you connect to an existing daemon or (using virtio-serial) " "to a live guest. For more information, see L." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:4962 +#: ../fish/guestfish-actions.pod:4969 msgid "set-autosync" msgstr "set-autosync" #. type: =head2 -#: ../fish/guestfish-actions.pod:4964 +#: ../fish/guestfish-actions.pod:4971 msgid "autosync" msgstr "autosync" #. type: verbatim -#: ../fish/guestfish-actions.pod:4966 +#: ../fish/guestfish-actions.pod:4973 #, no-wrap msgid "" " set-autosync true|false\n" @@ -20803,7 +20822,7 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:4968 ../src/guestfs-actions.pod:7838 +#: ../fish/guestfish-actions.pod:4975 ../src/guestfs-actions.pod:7845 msgid "" "If C is true, this enables autosync. Libguestfs will make a best " "effort attempt to make filesystems consistent and synchronized when the " @@ -20811,7 +20830,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4973 ../src/guestfs-actions.pod:7843 +#: ../fish/guestfish-actions.pod:4980 ../src/guestfs-actions.pod:7850 msgid "" "This is enabled by default (since libguestfs 1.5.24, previously it was " "disabled by default)." @@ -20820,17 +20839,17 @@ msgstr "" "た)。" #. type: =head2 -#: ../fish/guestfish-actions.pod:4976 +#: ../fish/guestfish-actions.pod:4983 msgid "set-direct" msgstr "set-direct" #. type: =head2 -#: ../fish/guestfish-actions.pod:4978 +#: ../fish/guestfish-actions.pod:4985 msgid "direct" msgstr "direct" #. type: verbatim -#: ../fish/guestfish-actions.pod:4980 +#: ../fish/guestfish-actions.pod:4987 #, no-wrap msgid "" " set-direct true|false\n" @@ -20840,36 +20859,36 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:4982 ../src/guestfs-actions.pod:7856 +#: ../fish/guestfish-actions.pod:4989 ../src/guestfs-actions.pod:7863 msgid "" "If the direct appliance mode flag is enabled, then stdin and stdout are " "passed directly through to the appliance once it is launched." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4986 +#: ../fish/guestfish-actions.pod:4993 msgid "" "One consequence of this is that log messages aren't caught by the library " "and handled by L, but go straight to stdout." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4990 ../src/guestfs-actions.pod:7864 +#: ../fish/guestfish-actions.pod:4997 ../src/guestfs-actions.pod:7871 msgid "You probably don't want to use this unless you know what you are doing." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4993 ../src/guestfs-actions.pod:7867 +#: ../fish/guestfish-actions.pod:5000 ../src/guestfs-actions.pod:7874 msgid "The default is disabled." msgstr "デフォルトは無効です。" #. type: =head2 -#: ../fish/guestfish-actions.pod:4995 +#: ../fish/guestfish-actions.pod:5002 msgid "set-e2attrs" msgstr "set-e2attrs" #. type: verbatim -#: ../fish/guestfish-actions.pod:4997 +#: ../fish/guestfish-actions.pod:5004 #, no-wrap msgid "" " set-e2attrs file attrs [clear:true|false]\n" @@ -20879,14 +20898,14 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:4999 ../src/guestfs-actions.pod:7888 +#: ../fish/guestfish-actions.pod:5006 ../src/guestfs-actions.pod:7895 msgid "" "This sets or clears the file attributes C associated with the inode " "C." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5002 +#: ../fish/guestfish-actions.pod:5009 msgid "" "C is a string of characters representing file attributes. See L for a list of possible attributes. Not all attributes can be " @@ -20894,31 +20913,31 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5006 ../src/guestfs-actions.pod:7895 +#: ../fish/guestfish-actions.pod:5013 ../src/guestfs-actions.pod:7902 msgid "" "If optional boolean C is not present or false, then the C " "listed are set in the inode." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5009 ../src/guestfs-actions.pod:7898 +#: ../fish/guestfish-actions.pod:5016 ../src/guestfs-actions.pod:7905 msgid "If C is true, then the C listed are cleared in the inode." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5012 ../src/guestfs-actions.pod:7901 +#: ../fish/guestfish-actions.pod:5019 ../src/guestfs-actions.pod:7908 msgid "" "In both cases, other attributes not present in the C string are left " "unchanged." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:5021 +#: ../fish/guestfish-actions.pod:5028 msgid "set-e2generation" msgstr "set-e2generation" #. type: verbatim -#: ../fish/guestfish-actions.pod:5023 +#: ../fish/guestfish-actions.pod:5030 #, no-wrap msgid "" " set-e2generation file generation\n" @@ -20928,22 +20947,22 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:5025 ../src/guestfs-actions.pod:7943 +#: ../fish/guestfish-actions.pod:5032 ../src/guestfs-actions.pod:7950 msgid "This sets the ext2 file generation of a file." msgstr "これはファイルの ext2 ファイル世代を設定します。" #. type: textblock -#: ../fish/guestfish-actions.pod:5027 +#: ../fish/guestfish-actions.pod:5034 msgid "See L." msgstr "L を参照してください。" #. type: =head2 -#: ../fish/guestfish-actions.pod:5029 +#: ../fish/guestfish-actions.pod:5036 msgid "set-e2label" msgstr "set-e2label" #. type: verbatim -#: ../fish/guestfish-actions.pod:5031 +#: ../fish/guestfish-actions.pod:5038 #, no-wrap msgid "" " set-e2label device label\n" @@ -20953,21 +20972,21 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:5033 ../src/guestfs-actions.pod:7965 +#: ../fish/guestfish-actions.pod:5040 ../src/guestfs-actions.pod:7972 msgid "" "This sets the ext2/3/4 filesystem label of the filesystem on C to " "C call instead." msgstr "" @@ -23976,12 +23995,12 @@ msgstr "" "ください。" #. type: =head2 -#: ../fish/guestfish-actions.pod:6282 +#: ../fish/guestfish-actions.pod:6289 msgid "zgrep" msgstr "zgrep" #. type: verbatim -#: ../fish/guestfish-actions.pod:6284 +#: ../fish/guestfish-actions.pod:6291 #, no-wrap msgid "" " zgrep regex path\n" @@ -23991,18 +24010,18 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:6286 ../src/guestfs-actions.pod:9916 +#: ../fish/guestfish-actions.pod:6293 ../src/guestfs-actions.pod:9923 msgid "" "This calls the external C program and returns the matching lines." msgstr "外部 C プログラムを呼び出し、一致する行を返します。" #. type: =head2 -#: ../fish/guestfish-actions.pod:6292 +#: ../fish/guestfish-actions.pod:6299 msgid "zgrepi" msgstr "zgrepi" #. type: verbatim -#: ../fish/guestfish-actions.pod:6294 +#: ../fish/guestfish-actions.pod:6301 #, no-wrap msgid "" " zgrepi regex path\n" @@ -24012,7 +24031,7 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:6296 ../src/guestfs-actions.pod:9935 +#: ../fish/guestfish-actions.pod:6303 ../src/guestfs-actions.pod:9942 msgid "" "This calls the external C program and returns the matching lines." msgstr "外部 C プログラムを呼び出し、一致する行を返します。" @@ -33170,39 +33189,39 @@ msgstr "" #: ../src/guestfs-actions.pod:7712 ../src/guestfs-actions.pod:7726 #: ../src/guestfs-actions.pod:7742 ../src/guestfs-actions.pod:7760 #: ../src/guestfs-actions.pod:7779 ../src/guestfs-actions.pod:7798 -#: ../src/guestfs-actions.pod:7828 ../src/guestfs-actions.pod:7846 -#: ../src/guestfs-actions.pod:7869 ../src/guestfs-actions.pod:7908 -#: ../src/guestfs-actions.pod:7947 ../src/guestfs-actions.pod:7972 -#: ../src/guestfs-actions.pod:7991 ../src/guestfs-actions.pod:8013 -#: ../src/guestfs-actions.pod:8034 ../src/guestfs-actions.pod:8053 -#: ../src/guestfs-actions.pod:8070 ../src/guestfs-actions.pod:8091 -#: ../src/guestfs-actions.pod:8119 ../src/guestfs-actions.pod:8143 -#: ../src/guestfs-actions.pod:8162 ../src/guestfs-actions.pod:8178 -#: ../src/guestfs-actions.pod:8202 ../src/guestfs-actions.pod:8221 -#: ../src/guestfs-actions.pod:8236 ../src/guestfs-actions.pod:8255 -#: ../src/guestfs-actions.pod:8299 ../src/guestfs-actions.pod:8326 -#: ../src/guestfs-actions.pod:8356 ../src/guestfs-actions.pod:8481 -#: ../src/guestfs-actions.pod:8491 ../src/guestfs-actions.pod:8612 -#: ../src/guestfs-actions.pod:8624 ../src/guestfs-actions.pod:8637 -#: ../src/guestfs-actions.pod:8650 ../src/guestfs-actions.pod:8672 -#: ../src/guestfs-actions.pod:8685 ../src/guestfs-actions.pod:8698 -#: ../src/guestfs-actions.pod:8711 ../src/guestfs-actions.pod:8726 -#: ../src/guestfs-actions.pod:8785 ../src/guestfs-actions.pod:8802 -#: ../src/guestfs-actions.pod:8818 ../src/guestfs-actions.pod:8834 -#: ../src/guestfs-actions.pod:8851 ../src/guestfs-actions.pod:8864 -#: ../src/guestfs-actions.pod:8884 ../src/guestfs-actions.pod:8984 -#: ../src/guestfs-actions.pod:9042 ../src/guestfs-actions.pod:9056 -#: ../src/guestfs-actions.pod:9097 ../src/guestfs-actions.pod:9110 -#: ../src/guestfs-actions.pod:9132 ../src/guestfs-actions.pod:9170 -#: ../src/guestfs-actions.pod:9204 ../src/guestfs-actions.pod:9240 -#: ../src/guestfs-actions.pod:9356 ../src/guestfs-actions.pod:9371 -#: ../src/guestfs-actions.pod:9385 ../src/guestfs-actions.pod:9459 -#: ../src/guestfs-actions.pod:9472 ../src/guestfs-actions.pod:9517 -#: ../src/guestfs-actions.pod:9557 ../src/guestfs-actions.pod:9615 -#: ../src/guestfs-actions.pod:9632 ../src/guestfs-actions.pod:9652 -#: ../src/guestfs-actions.pod:9685 ../src/guestfs-actions.pod:9766 -#: ../src/guestfs-actions.pod:9789 ../src/guestfs-actions.pod:9814 -#: ../src/guestfs-actions.pod:9840 +#: ../src/guestfs-actions.pod:7835 ../src/guestfs-actions.pod:7853 +#: ../src/guestfs-actions.pod:7876 ../src/guestfs-actions.pod:7915 +#: ../src/guestfs-actions.pod:7954 ../src/guestfs-actions.pod:7979 +#: ../src/guestfs-actions.pod:7998 ../src/guestfs-actions.pod:8020 +#: ../src/guestfs-actions.pod:8041 ../src/guestfs-actions.pod:8060 +#: ../src/guestfs-actions.pod:8077 ../src/guestfs-actions.pod:8098 +#: ../src/guestfs-actions.pod:8126 ../src/guestfs-actions.pod:8150 +#: ../src/guestfs-actions.pod:8169 ../src/guestfs-actions.pod:8185 +#: ../src/guestfs-actions.pod:8209 ../src/guestfs-actions.pod:8228 +#: ../src/guestfs-actions.pod:8243 ../src/guestfs-actions.pod:8262 +#: ../src/guestfs-actions.pod:8306 ../src/guestfs-actions.pod:8333 +#: ../src/guestfs-actions.pod:8363 ../src/guestfs-actions.pod:8488 +#: ../src/guestfs-actions.pod:8498 ../src/guestfs-actions.pod:8619 +#: ../src/guestfs-actions.pod:8631 ../src/guestfs-actions.pod:8644 +#: ../src/guestfs-actions.pod:8657 ../src/guestfs-actions.pod:8679 +#: ../src/guestfs-actions.pod:8692 ../src/guestfs-actions.pod:8705 +#: ../src/guestfs-actions.pod:8718 ../src/guestfs-actions.pod:8733 +#: ../src/guestfs-actions.pod:8792 ../src/guestfs-actions.pod:8809 +#: ../src/guestfs-actions.pod:8825 ../src/guestfs-actions.pod:8841 +#: ../src/guestfs-actions.pod:8858 ../src/guestfs-actions.pod:8871 +#: ../src/guestfs-actions.pod:8891 ../src/guestfs-actions.pod:8991 +#: ../src/guestfs-actions.pod:9049 ../src/guestfs-actions.pod:9063 +#: ../src/guestfs-actions.pod:9104 ../src/guestfs-actions.pod:9117 +#: ../src/guestfs-actions.pod:9139 ../src/guestfs-actions.pod:9177 +#: ../src/guestfs-actions.pod:9211 ../src/guestfs-actions.pod:9247 +#: ../src/guestfs-actions.pod:9363 ../src/guestfs-actions.pod:9378 +#: ../src/guestfs-actions.pod:9392 ../src/guestfs-actions.pod:9466 +#: ../src/guestfs-actions.pod:9479 ../src/guestfs-actions.pod:9524 +#: ../src/guestfs-actions.pod:9564 ../src/guestfs-actions.pod:9622 +#: ../src/guestfs-actions.pod:9639 ../src/guestfs-actions.pod:9659 +#: ../src/guestfs-actions.pod:9692 ../src/guestfs-actions.pod:9773 +#: ../src/guestfs-actions.pod:9796 ../src/guestfs-actions.pod:9821 +#: ../src/guestfs-actions.pod:9847 msgid "This function returns 0 on success or -1 on error." msgstr "この関数は、成功のとき 0 を、エラーのとき -1 を返します。" @@ -33211,10 +33230,10 @@ msgstr "この関数は、成功のとき 0 を、エラーのとき -1 を返 #: ../src/guestfs-actions.pod:1589 ../src/guestfs-actions.pod:2820 #: ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3182 #: ../src/guestfs-actions.pod:4710 ../src/guestfs-actions.pod:4730 -#: ../src/guestfs-actions.pod:6350 ../src/guestfs-actions.pod:7848 -#: ../src/guestfs-actions.pod:8072 ../src/guestfs-actions.pod:8223 -#: ../src/guestfs-actions.pod:8728 ../src/guestfs-actions.pod:8853 -#: ../src/guestfs-actions.pod:9559 +#: ../src/guestfs-actions.pod:6350 ../src/guestfs-actions.pod:7855 +#: ../src/guestfs-actions.pod:8079 ../src/guestfs-actions.pod:8230 +#: ../src/guestfs-actions.pod:8735 ../src/guestfs-actions.pod:8860 +#: ../src/guestfs-actions.pod:9566 msgid "(Added in 0.3)" msgstr "(0.3 において追加)" @@ -33250,8 +33269,8 @@ msgstr "" #: ../src/guestfs-actions.pod:5969 ../src/guestfs-actions.pod:6082 #: ../src/guestfs-actions.pod:6360 ../src/guestfs-actions.pod:6409 #: ../src/guestfs-actions.pod:6671 ../src/guestfs-actions.pod:6732 -#: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7881 -#: ../src/guestfs-actions.pod:8895 ../src/guestfs-actions.pod:9120 +#: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7888 +#: ../src/guestfs-actions.pod:8902 ../src/guestfs-actions.pod:9127 msgid "" "You may supply a list of optional arguments to this call. Use zero or more " "of the following pairs of parameters, and terminate the list with C<-1> on " @@ -33308,9 +33327,9 @@ msgstr "" #: ../src/guestfs-actions.pod:5537 ../src/guestfs-actions.pod:6623 #: ../src/guestfs-actions.pod:6644 ../src/guestfs-actions.pod:6971 #: ../src/guestfs-actions.pod:7209 ../src/guestfs-actions.pod:7403 -#: ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:9083 -#: ../src/guestfs-actions.pod:9570 ../src/guestfs-actions.pod:9583 -#: ../src/guestfs-actions.pod:9596 +#: ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:9090 +#: ../src/guestfs-actions.pod:9577 ../src/guestfs-actions.pod:9590 +#: ../src/guestfs-actions.pod:9603 msgid "On error this function returns -1." msgstr "この関数はエラーのとき -1 を返します。" @@ -33367,9 +33386,9 @@ msgstr "これは L の \"va_list variant\" です。" #: ../src/guestfs-actions.pod:6711 ../src/guestfs-actions.pod:6723 #: ../src/guestfs-actions.pod:6762 ../src/guestfs-actions.pod:6773 #: ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:6855 -#: ../src/guestfs-actions.pod:7922 ../src/guestfs-actions.pod:7934 -#: ../src/guestfs-actions.pod:8997 ../src/guestfs-actions.pod:9008 -#: ../src/guestfs-actions.pod:9144 ../src/guestfs-actions.pod:9154 +#: ../src/guestfs-actions.pod:7929 ../src/guestfs-actions.pod:7941 +#: ../src/guestfs-actions.pod:9004 ../src/guestfs-actions.pod:9015 +#: ../src/guestfs-actions.pod:9151 ../src/guestfs-actions.pod:9161 msgid "See L." msgstr "L 参照。" @@ -33793,11 +33812,11 @@ msgstr "" #: ../src/guestfs-actions.pod:5824 ../src/guestfs-actions.pod:6989 #: ../src/guestfs-actions.pod:7190 ../src/guestfs-actions.pod:7378 #: ../src/guestfs-actions.pod:7556 ../src/guestfs-actions.pod:7605 -#: ../src/guestfs-actions.pod:8374 ../src/guestfs-actions.pod:8390 -#: ../src/guestfs-actions.pod:8414 ../src/guestfs-actions.pod:8438 -#: ../src/guestfs-actions.pod:9299 ../src/guestfs-actions.pod:9318 -#: ../src/guestfs-actions.pod:9336 ../src/guestfs-actions.pod:9529 -#: ../src/guestfs-actions.pod:9904 +#: ../src/guestfs-actions.pod:8381 ../src/guestfs-actions.pod:8397 +#: ../src/guestfs-actions.pod:8421 ../src/guestfs-actions.pod:8445 +#: ../src/guestfs-actions.pod:9306 ../src/guestfs-actions.pod:9325 +#: ../src/guestfs-actions.pod:9343 ../src/guestfs-actions.pod:9536 +#: ../src/guestfs-actions.pod:9911 msgid "" "This function returns a string, or NULL on error. I." @@ -33932,13 +33951,13 @@ msgstr "" #: ../src/guestfs-actions.pod:5039 ../src/guestfs-actions.pod:5455 #: ../src/guestfs-actions.pod:6591 ../src/guestfs-actions.pod:7350 #: ../src/guestfs-actions.pod:7476 ../src/guestfs-actions.pod:7590 -#: ../src/guestfs-actions.pod:8454 ../src/guestfs-actions.pod:8538 -#: ../src/guestfs-actions.pod:8593 ../src/guestfs-actions.pod:8739 -#: ../src/guestfs-actions.pod:8763 ../src/guestfs-actions.pod:9403 -#: ../src/guestfs-actions.pod:9442 ../src/guestfs-actions.pod:9489 -#: ../src/guestfs-actions.pod:9719 ../src/guestfs-actions.pod:9738 -#: ../src/guestfs-actions.pod:9854 ../src/guestfs-actions.pod:9873 -#: ../src/guestfs-actions.pod:9919 ../src/guestfs-actions.pod:9938 +#: ../src/guestfs-actions.pod:8461 ../src/guestfs-actions.pod:8545 +#: ../src/guestfs-actions.pod:8600 ../src/guestfs-actions.pod:8746 +#: ../src/guestfs-actions.pod:8770 ../src/guestfs-actions.pod:9410 +#: ../src/guestfs-actions.pod:9449 ../src/guestfs-actions.pod:9496 +#: ../src/guestfs-actions.pod:9726 ../src/guestfs-actions.pod:9745 +#: ../src/guestfs-actions.pod:9861 ../src/guestfs-actions.pod:9880 +#: ../src/guestfs-actions.pod:9926 ../src/guestfs-actions.pod:9945 msgid "" "This function returns a NULL-terminated array of strings (like L), or NULL if there was an error. I, where " @@ -34946,7 +34965,7 @@ msgid "See also C." msgstr "C 参照。" #. type: textblock -#: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:9321 +#: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:9328 msgid "(Added in 1.0.75)" msgstr "(1.0.75 において追加)" @@ -34983,8 +35002,8 @@ msgstr "" #: ../src/guestfs-actions.pod:4922 ../src/guestfs-actions.pod:4939 #: ../src/guestfs-actions.pod:5043 ../src/guestfs-actions.pod:5459 #: ../src/guestfs-actions.pod:5473 ../src/guestfs-actions.pod:7354 -#: ../src/guestfs-actions.pod:7368 ../src/guestfs-actions.pod:9493 -#: ../src/guestfs-actions.pod:9507 +#: ../src/guestfs-actions.pod:7368 ../src/guestfs-actions.pod:9500 +#: ../src/guestfs-actions.pod:9514 msgid "(Added in 0.4)" msgstr "(0.4 において追加)" @@ -35027,7 +35046,7 @@ msgstr "" #: ../src/guestfs-actions.pod:1316 ../src/guestfs-actions.pod:2001 #: ../src/guestfs-actions.pod:3148 ../src/guestfs-actions.pod:4504 #: ../src/guestfs-actions.pod:4565 ../src/guestfs-actions.pod:4592 -#: ../src/guestfs-actions.pod:9177 +#: ../src/guestfs-actions.pod:9184 msgid "(Added in 1.0.2)" msgstr "(1.0.2 において追加)" @@ -35064,8 +35083,8 @@ msgstr "" #: ../src/guestfs-actions.pod:1332 ../src/guestfs-actions.pod:6785 #: ../src/guestfs-actions.pod:6921 ../src/guestfs-actions.pod:6955 #: ../src/guestfs-actions.pod:6973 ../src/guestfs-actions.pod:7155 -#: ../src/guestfs-actions.pod:9044 ../src/guestfs-actions.pod:9058 -#: ../src/guestfs-actions.pod:9519 +#: ../src/guestfs-actions.pod:9051 ../src/guestfs-actions.pod:9065 +#: ../src/guestfs-actions.pod:9526 msgid "(Added in 1.3.2)" msgstr "(1.3.2 において追加)" @@ -35253,7 +35272,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:1484 ../src/guestfs-actions.pod:1543 -#: ../src/guestfs-actions.pod:3134 ../src/guestfs-actions.pod:8180 +#: ../src/guestfs-actions.pod:3134 ../src/guestfs-actions.pod:8187 msgid "(Added in 1.13.15)" msgstr "(1.13.15 において追加)" @@ -35489,9 +35508,9 @@ msgstr "" #: ../src/guestfs-actions.pod:1847 ../src/guestfs-actions.pod:1996 #: ../src/guestfs-actions.pod:2027 ../src/guestfs-actions.pod:2072 #: ../src/guestfs-actions.pod:2539 ../src/guestfs-actions.pod:2561 -#: ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:9172 -#: ../src/guestfs-actions.pod:9206 ../src/guestfs-actions.pod:9768 -#: ../src/guestfs-actions.pod:9791 ../src/guestfs-actions.pod:9816 +#: ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:9179 +#: ../src/guestfs-actions.pod:9213 ../src/guestfs-actions.pod:9775 +#: ../src/guestfs-actions.pod:9798 ../src/guestfs-actions.pod:9823 msgid "" "This long-running command can generate progress notification messages so " "that the caller can display a progress bar or indicator. To receive these " @@ -35892,8 +35911,8 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:1852 ../src/guestfs-actions.pod:5486 -#: ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:9407 -#: ../src/guestfs-actions.pod:9446 ../src/guestfs-actions.pod:9532 +#: ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:9414 +#: ../src/guestfs-actions.pod:9453 ../src/guestfs-actions.pod:9539 msgid "(Added in 1.0.87)" msgstr "(1.0.87 において追加)" @@ -36033,9 +36052,9 @@ msgstr "" #: ../src/guestfs-actions.pod:2077 ../src/guestfs-actions.pod:3377 #: ../src/guestfs-actions.pod:3401 ../src/guestfs-actions.pod:3469 #: ../src/guestfs-actions.pod:5827 ../src/guestfs-actions.pod:6509 -#: ../src/guestfs-actions.pod:8746 ../src/guestfs-actions.pod:8770 -#: ../src/guestfs-actions.pod:9572 ../src/guestfs-actions.pod:9585 -#: ../src/guestfs-actions.pod:9598 +#: ../src/guestfs-actions.pod:8753 ../src/guestfs-actions.pod:8777 +#: ../src/guestfs-actions.pod:9579 ../src/guestfs-actions.pod:9592 +#: ../src/guestfs-actions.pod:9605 msgid "(Added in 1.0.54)" msgstr "(1.0.54 において追加)" @@ -36146,7 +36165,7 @@ msgid "See also C, C." msgstr "C, C 参照。" #. type: textblock -#: ../src/guestfs-actions.pod:2032 ../src/guestfs-actions.pod:9211 +#: ../src/guestfs-actions.pod:2032 ../src/guestfs-actions.pod:9218 msgid "(Added in 1.5.17)" msgstr "(1.5.17 において追加)" @@ -36337,7 +36356,7 @@ msgstr "C 参照。" #. type: textblock #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3159 -#: ../src/guestfs-actions.pod:8204 +#: ../src/guestfs-actions.pod:8211 msgid "(Added in 1.0.69)" msgstr "(1.0.69 において追加)" @@ -36373,13 +36392,13 @@ msgstr "" #: ../src/guestfs-actions.pod:4982 ../src/guestfs-actions.pod:4995 #: ../src/guestfs-actions.pod:5009 ../src/guestfs-actions.pod:6303 #: ../src/guestfs-actions.pod:7559 ../src/guestfs-actions.pod:7608 -#: ../src/guestfs-actions.pod:8614 ../src/guestfs-actions.pod:8626 -#: ../src/guestfs-actions.pod:8639 ../src/guestfs-actions.pod:8652 -#: ../src/guestfs-actions.pod:8674 ../src/guestfs-actions.pod:8687 -#: ../src/guestfs-actions.pod:8700 ../src/guestfs-actions.pod:8713 -#: ../src/guestfs-actions.pod:9726 ../src/guestfs-actions.pod:9745 -#: ../src/guestfs-actions.pod:9861 ../src/guestfs-actions.pod:9880 -#: ../src/guestfs-actions.pod:9926 ../src/guestfs-actions.pod:9945 +#: ../src/guestfs-actions.pod:8621 ../src/guestfs-actions.pod:8633 +#: ../src/guestfs-actions.pod:8646 ../src/guestfs-actions.pod:8659 +#: ../src/guestfs-actions.pod:8681 ../src/guestfs-actions.pod:8694 +#: ../src/guestfs-actions.pod:8707 ../src/guestfs-actions.pod:8720 +#: ../src/guestfs-actions.pod:9733 ../src/guestfs-actions.pod:9752 +#: ../src/guestfs-actions.pod:9868 ../src/guestfs-actions.pod:9887 +#: ../src/guestfs-actions.pod:9933 ../src/guestfs-actions.pod:9952 msgid "(Added in 1.0.66)" msgstr "(1.0.66 において追加)" @@ -36899,7 +36918,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:2721 ../src/guestfs-actions.pod:9773 +#: ../src/guestfs-actions.pod:2721 ../src/guestfs-actions.pod:9780 msgid "(Added in 1.0.16)" msgstr "(1.0.16 において追加)" @@ -37012,10 +37031,10 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:2797 ../src/guestfs-actions.pod:7321 -#: ../src/guestfs-actions.pod:7800 ../src/guestfs-actions.pod:8358 -#: ../src/guestfs-actions.pod:8377 ../src/guestfs-actions.pod:8393 -#: ../src/guestfs-actions.pod:8417 ../src/guestfs-actions.pod:9358 -#: ../src/guestfs-actions.pod:9373 ../src/guestfs-actions.pod:9842 +#: ../src/guestfs-actions.pod:7800 ../src/guestfs-actions.pod:8365 +#: ../src/guestfs-actions.pod:8384 ../src/guestfs-actions.pod:8400 +#: ../src/guestfs-actions.pod:8424 ../src/guestfs-actions.pod:9365 +#: ../src/guestfs-actions.pod:9380 ../src/guestfs-actions.pod:9849 msgid "(Added in 1.0.26)" msgstr "(1.0.26 において追加)" @@ -37042,7 +37061,7 @@ msgid "Return the current attach method. See C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2809 ../src/guestfs-actions.pod:7830 +#: ../src/guestfs-actions.pod:2809 ../src/guestfs-actions.pod:7837 msgid "(Added in 1.9.8)" msgstr "(1.9.8 において追加)" @@ -37081,7 +37100,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:2831 ../src/guestfs-actions.pod:7871 +#: ../src/guestfs-actions.pod:2831 ../src/guestfs-actions.pod:7878 msgid "(Added in 1.0.72)" msgstr "(1.0.72 において追加)" @@ -37118,7 +37137,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:2950 ../src/guestfs-actions.pod:2970 -#: ../src/guestfs-actions.pod:7910 ../src/guestfs-actions.pod:7949 +#: ../src/guestfs-actions.pod:7917 ../src/guestfs-actions.pod:7956 msgid "(Added in 1.17.31)" msgstr "(1.17.31 にて追加)" @@ -37176,7 +37195,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:2991 ../src/guestfs-actions.pod:3012 -#: ../src/guestfs-actions.pod:7974 ../src/guestfs-actions.pod:7993 +#: ../src/guestfs-actions.pod:7981 ../src/guestfs-actions.pod:8000 msgid "(Added in 1.0.15)" msgstr "(1.0.15 において追加)" @@ -37238,8 +37257,8 @@ msgstr "" #: ../src/guestfs-actions.pod:6208 ../src/guestfs-actions.pod:6227 #: ../src/guestfs-actions.pod:6246 ../src/guestfs-actions.pod:6258 #: ../src/guestfs-actions.pod:6275 ../src/guestfs-actions.pod:6288 -#: ../src/guestfs-actions.pod:7546 ../src/guestfs-actions.pod:8036 -#: ../src/guestfs-actions.pod:8328 ../src/guestfs-actions.pod:9085 +#: ../src/guestfs-actions.pod:7546 ../src/guestfs-actions.pod:8043 +#: ../src/guestfs-actions.pod:8335 ../src/guestfs-actions.pod:9092 msgid "(Added in 1.0.55)" msgstr "(1.0.55 において追加)" @@ -37261,7 +37280,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:8055 +#: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:8062 msgid "(Added in 1.5.4)" msgstr "(1.5.4 において追加)" @@ -37307,8 +37326,8 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:3068 ../src/guestfs-actions.pod:8093 -#: ../src/guestfs-actions.pod:9657 +#: ../src/guestfs-actions.pod:3068 ../src/guestfs-actions.pod:8100 +#: ../src/guestfs-actions.pod:9664 msgid "(Added in 1.11.18)" msgstr "(1.11.18 において追加)" @@ -37352,7 +37371,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:8121 +#: ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:8128 msgid "(Added in 1.0.6)" msgstr "(1.0.6 において追加)" @@ -37377,9 +37396,9 @@ msgstr "" #: ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:4750 #: ../src/guestfs-actions.pod:5110 ../src/guestfs-actions.pod:5521 #: ../src/guestfs-actions.pod:5784 ../src/guestfs-actions.pod:7251 -#: ../src/guestfs-actions.pod:7594 ../src/guestfs-actions.pod:8145 -#: ../src/guestfs-actions.pod:8866 ../src/guestfs-actions.pod:8886 -#: ../src/guestfs-actions.pod:9242 +#: ../src/guestfs-actions.pod:7594 ../src/guestfs-actions.pod:8152 +#: ../src/guestfs-actions.pod:8873 ../src/guestfs-actions.pod:8893 +#: ../src/guestfs-actions.pod:9249 msgid "(Added in 1.0.77)" msgstr "(1.0.77 において追加)" @@ -37409,7 +37428,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:3123 ../src/guestfs-actions.pod:3197 -#: ../src/guestfs-actions.pod:8164 ../src/guestfs-actions.pod:8238 +#: ../src/guestfs-actions.pod:8171 ../src/guestfs-actions.pod:8245 msgid "(Added in 1.0.67)" msgstr "(1.0.67 において追加)" @@ -37580,7 +37599,7 @@ msgstr "関連項目: C, C, L" #: ../src/guestfs-actions.pod:3223 ../src/guestfs-actions.pod:3440 #: ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:4776 #: ../src/guestfs-actions.pod:7244 ../src/guestfs-actions.pod:7270 -#: ../src/guestfs-actions.pod:7451 ../src/guestfs-actions.pod:9422 +#: ../src/guestfs-actions.pod:7451 ../src/guestfs-actions.pod:9429 msgid "" "This function returns a buffer, or NULL on error. The size of the returned " "buffer is written to C<*size_r>. I, or NULL if there was an " "error. I after use>." @@ -39595,8 +39614,8 @@ msgstr "" "呼び出し元は使用後に C を呼び出す必要があります>。" #. type: textblock -#: ../src/guestfs-actions.pod:5080 ../src/guestfs-actions.pod:8509 -#: ../src/guestfs-actions.pod:8527 ../src/guestfs-actions.pod:9030 +#: ../src/guestfs-actions.pod:5080 ../src/guestfs-actions.pod:8516 +#: ../src/guestfs-actions.pod:8534 ../src/guestfs-actions.pod:9037 msgid "(Added in 0.9.2)" msgstr "(0.9.2 において追加)" @@ -39925,7 +39944,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:5299 ../src/guestfs-actions.pod:9821 +#: ../src/guestfs-actions.pod:5299 ../src/guestfs-actions.pod:9828 msgid "(Added in 1.17.18)" msgstr "(1.17.18 にて追加)" @@ -40039,7 +40058,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:5395 ../src/guestfs-actions.pod:7308 -#: ../src/guestfs-actions.pod:9461 +#: ../src/guestfs-actions.pod:9468 msgid "(Added in 1.0.13)" msgstr "(1.0.13 において追加)" @@ -40065,7 +40084,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:5408 ../src/guestfs-actions.pod:9474 +#: ../src/guestfs-actions.pod:5408 ../src/guestfs-actions.pod:9481 msgid "(Added in 1.0.83)" msgstr "(1.0.83 において追加)" @@ -41411,7 +41430,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:6445 ../src/guestfs-actions.pod:6494 -#: ../src/guestfs-actions.pod:9134 +#: ../src/guestfs-actions.pod:9141 msgid "(Added in 1.17.22)" msgstr "(1.17.22 にて追加)" @@ -41779,7 +41798,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:6661 ../src/guestfs-actions.pod:6699 -#: ../src/guestfs-actions.pod:6751 ../src/guestfs-actions.pod:8015 +#: ../src/guestfs-actions.pod:6751 ../src/guestfs-actions.pod:8022 msgid "(Added in 1.17.9)" msgstr "(1.17.9 において追加)" @@ -42139,7 +42158,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:6876 ../src/guestfs-actions.pod:7335 #: ../src/guestfs-actions.pod:7408 ../src/guestfs-actions.pod:7676 -#: ../src/guestfs-actions.pod:9637 +#: ../src/guestfs-actions.pod:9644 msgid "(Added in 1.3.14)" msgstr "(1.3.14 において追加)" @@ -43273,12 +43292,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:7832 +#: ../src/guestfs-actions.pod:7839 msgid "guestfs_set_autosync" msgstr "guestfs_set_autosync" #. type: verbatim -#: ../src/guestfs-actions.pod:7834 +#: ../src/guestfs-actions.pod:7841 #, no-wrap msgid "" " int\n" @@ -43292,12 +43311,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:7850 +#: ../src/guestfs-actions.pod:7857 msgid "guestfs_set_direct" msgstr "guestfs_set_direct" #. type: verbatim -#: ../src/guestfs-actions.pod:7852 +#: ../src/guestfs-actions.pod:7859 #, no-wrap msgid "" " int\n" @@ -43311,7 +43330,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7860 +#: ../src/guestfs-actions.pod:7867 msgid "" "One consequence of this is that log messages aren't caught by the library " "and handled by C, but go straight to " @@ -43319,12 +43338,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7873 +#: ../src/guestfs-actions.pod:7880 msgid "guestfs_set_e2attrs" msgstr "guestfs_set_e2attrs" #. type: verbatim -#: ../src/guestfs-actions.pod:7875 +#: ../src/guestfs-actions.pod:7882 #, no-wrap msgid "" " int\n" @@ -43342,7 +43361,7 @@ msgstr "" "\n" #. type: verbatim -#: ../src/guestfs-actions.pod:7886 +#: ../src/guestfs-actions.pod:7893 #, no-wrap msgid "" " GUESTFS_SET_E2ATTRS_CLEAR, int clear,\n" @@ -43352,7 +43371,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7891 +#: ../src/guestfs-actions.pod:7898 msgid "" "C is a string of characters representing file attributes. See " "C for a list of possible attributes. Not all " @@ -43363,12 +43382,12 @@ msgstr "" "りません。" #. type: =head2 -#: ../src/guestfs-actions.pod:7912 +#: ../src/guestfs-actions.pod:7919 msgid "guestfs_set_e2attrs_va" msgstr "guestfs_set_e2attrs_va" #. type: verbatim -#: ../src/guestfs-actions.pod:7914 +#: ../src/guestfs-actions.pod:7921 #, no-wrap msgid "" " int\n" @@ -43386,17 +43405,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7920 +#: ../src/guestfs-actions.pod:7927 msgid "This is the \"va_list variant\" of L." msgstr "これは L の \"va_list variant\" です。" #. type: =head2 -#: ../src/guestfs-actions.pod:7924 +#: ../src/guestfs-actions.pod:7931 msgid "guestfs_set_e2attrs_argv" msgstr "guestfs_set_e2attrs_argv" #. type: verbatim -#: ../src/guestfs-actions.pod:7926 +#: ../src/guestfs-actions.pod:7933 #, no-wrap msgid "" " int\n" @@ -43414,17 +43433,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7932 +#: ../src/guestfs-actions.pod:7939 msgid "This is the \"argv variant\" of L." msgstr "これは L の \"argv variant\" です。" #. type: =head2 -#: ../src/guestfs-actions.pod:7936 +#: ../src/guestfs-actions.pod:7943 msgid "guestfs_set_e2generation" msgstr "guestfs_set_e2generation" #. type: verbatim -#: ../src/guestfs-actions.pod:7938 +#: ../src/guestfs-actions.pod:7945 #, no-wrap msgid "" " int\n" @@ -43440,17 +43459,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7945 +#: ../src/guestfs-actions.pod:7952 msgid "See C." msgstr "C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:7951 +#: ../src/guestfs-actions.pod:7958 msgid "guestfs_set_e2label" msgstr "guestfs_set_e2label" #. type: verbatim -#: ../src/guestfs-actions.pod:7953 +#: ../src/guestfs-actions.pod:7960 #, no-wrap msgid "" " int\n" @@ -43466,7 +43485,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7958 +#: ../src/guestfs-actions.pod:7965 msgid "" "I In new code, use the L " "call instead." @@ -43475,19 +43494,19 @@ msgstr "" "guestfs_set_label> を使用してください。" #. type: textblock -#: ../src/guestfs-actions.pod:7969 +#: ../src/guestfs-actions.pod:7976 msgid "" "You can use either C or C to return " "the existing label on a filesystem." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7976 +#: ../src/guestfs-actions.pod:7983 msgid "guestfs_set_e2uuid" msgstr "guestfs_set_e2uuid" #. type: verbatim -#: ../src/guestfs-actions.pod:7978 +#: ../src/guestfs-actions.pod:7985 #, no-wrap msgid "" " int\n" @@ -43503,19 +43522,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7988 +#: ../src/guestfs-actions.pod:7995 msgid "" "You can use either C or C to return " "the existing UUID of a filesystem." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7995 +#: ../src/guestfs-actions.pod:8002 msgid "guestfs_set_label" msgstr "guestfs_set_label" #. type: verbatim -#: ../src/guestfs-actions.pod:7997 +#: ../src/guestfs-actions.pod:8004 #, no-wrap msgid "" " int\n" @@ -43531,19 +43550,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8011 +#: ../src/guestfs-actions.pod:8018 msgid "To read the label on a filesystem, call C." msgstr "" "ファイルシステムにあるラベルを読み込むには C を呼び出しま" "す。" #. type: =head2 -#: ../src/guestfs-actions.pod:8017 +#: ../src/guestfs-actions.pod:8024 msgid "guestfs_set_memsize" msgstr "guestfs_set_memsize" #. type: verbatim -#: ../src/guestfs-actions.pod:8019 +#: ../src/guestfs-actions.pod:8026 #, no-wrap msgid "" " int\n" @@ -43557,19 +43576,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8023 +#: ../src/guestfs-actions.pod:8030 msgid "" "This sets the memory size in megabytes allocated to the qemu subprocess. " "This only has any effect if called before C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8038 +#: ../src/guestfs-actions.pod:8045 msgid "guestfs_set_network" msgstr "guestfs_set_network" #. type: verbatim -#: ../src/guestfs-actions.pod:8040 +#: ../src/guestfs-actions.pod:8047 #, no-wrap msgid "" " int\n" @@ -43583,19 +43602,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8050 +#: ../src/guestfs-actions.pod:8057 msgid "" "You must call this before calling C, otherwise it has no " "effect." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8057 +#: ../src/guestfs-actions.pod:8064 msgid "guestfs_set_path" msgstr "guestfs_set_path" #. type: verbatim -#: ../src/guestfs-actions.pod:8059 +#: ../src/guestfs-actions.pod:8066 #, no-wrap msgid "" " int\n" @@ -43609,12 +43628,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8074 +#: ../src/guestfs-actions.pod:8081 msgid "guestfs_set_pgroup" msgstr "guestfs_set_pgroup" #. type: verbatim -#: ../src/guestfs-actions.pod:8076 +#: ../src/guestfs-actions.pod:8083 #, no-wrap msgid "" " int\n" @@ -43628,7 +43647,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8086 +#: ../src/guestfs-actions.pod:8093 msgid "" "The default for this flag is false, because usually you want C<^C> to kill " "the subprocess. Guestfish sets this flag to true when used interactively, " @@ -43637,12 +43656,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8095 +#: ../src/guestfs-actions.pod:8102 msgid "guestfs_set_qemu" msgstr "guestfs_set_qemu" #. type: verbatim -#: ../src/guestfs-actions.pod:8097 +#: ../src/guestfs-actions.pod:8104 #, no-wrap msgid "" " int\n" @@ -43656,12 +43675,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8123 +#: ../src/guestfs-actions.pod:8130 msgid "guestfs_set_recovery_proc" msgstr "guestfs_set_recovery_proc" #. type: verbatim -#: ../src/guestfs-actions.pod:8125 +#: ../src/guestfs-actions.pod:8132 #, no-wrap msgid "" " int\n" @@ -43675,7 +43694,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8129 +#: ../src/guestfs-actions.pod:8136 msgid "" "If this is called with the parameter C then C does " "not create a recovery process. The purpose of the recovery process is to " @@ -43684,19 +43703,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8134 +#: ../src/guestfs-actions.pod:8141 msgid "" "This only has any effect if called before C, and the default " "is true." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8147 +#: ../src/guestfs-actions.pod:8154 msgid "guestfs_set_selinux" msgstr "guestfs_set_selinux" #. type: verbatim -#: ../src/guestfs-actions.pod:8149 +#: ../src/guestfs-actions.pod:8156 #, no-wrap msgid "" " int\n" @@ -43710,12 +43729,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8166 +#: ../src/guestfs-actions.pod:8173 msgid "guestfs_set_smp" msgstr "guestfs_set_smp" #. type: verbatim -#: ../src/guestfs-actions.pod:8168 +#: ../src/guestfs-actions.pod:8175 #, no-wrap msgid "" " int\n" @@ -43729,17 +43748,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8176 +#: ../src/guestfs-actions.pod:8183 msgid "This function must be called before C." msgstr "この関数は C の前に呼び出す必要があります。" #. type: =head2 -#: ../src/guestfs-actions.pod:8182 +#: ../src/guestfs-actions.pod:8189 msgid "guestfs_set_trace" msgstr "guestfs_set_trace" #. type: verbatim -#: ../src/guestfs-actions.pod:8184 +#: ../src/guestfs-actions.pod:8191 #, no-wrap msgid "" " int\n" @@ -43753,19 +43772,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8198 +#: ../src/guestfs-actions.pod:8205 msgid "" "Trace messages are normally sent to C, unless you register a " "callback to send them somewhere else (see C)." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8206 +#: ../src/guestfs-actions.pod:8213 msgid "guestfs_set_verbose" msgstr "guestfs_set_verbose" #. type: verbatim -#: ../src/guestfs-actions.pod:8208 +#: ../src/guestfs-actions.pod:8215 #, no-wrap msgid "" " int\n" @@ -43779,19 +43798,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8217 +#: ../src/guestfs-actions.pod:8224 msgid "" "Verbose messages are normally sent to C, unless you register a " "callback to send them somewhere else (see C)." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8225 +#: ../src/guestfs-actions.pod:8232 msgid "guestfs_setcon" msgstr "guestfs_setcon" #. type: verbatim -#: ../src/guestfs-actions.pod:8227 +#: ../src/guestfs-actions.pod:8234 #, no-wrap msgid "" " int\n" @@ -43805,12 +43824,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8240 +#: ../src/guestfs-actions.pod:8247 msgid "guestfs_setxattr" msgstr "guestfs_setxattr" #. type: verbatim -#: ../src/guestfs-actions.pod:8242 +#: ../src/guestfs-actions.pod:8249 #, no-wrap msgid "" " int\n" @@ -43830,17 +43849,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8253 +#: ../src/guestfs-actions.pod:8260 msgid "See also: C, L." msgstr "関連項目: C, L" #. type: =head2 -#: ../src/guestfs-actions.pod:8259 +#: ../src/guestfs-actions.pod:8266 msgid "guestfs_sfdisk" msgstr "guestfs_sfdisk" #. type: verbatim -#: ../src/guestfs-actions.pod:8261 +#: ../src/guestfs-actions.pod:8268 #, no-wrap msgid "" " int\n" @@ -43862,8 +43881,8 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8269 ../src/guestfs-actions.pod:8310 -#: ../src/guestfs-actions.pod:8341 +#: ../src/guestfs-actions.pod:8276 ../src/guestfs-actions.pod:8317 +#: ../src/guestfs-actions.pod:8348 msgid "" "I In new code, use the L " "call instead." @@ -43872,19 +43891,19 @@ msgstr "" "guestfs_part_add> を使用してください。" #. type: textblock -#: ../src/guestfs-actions.pod:8296 +#: ../src/guestfs-actions.pod:8303 msgid "" "See also: C, C, C" msgstr "" "関連項目: C, C, C" #. type: =head2 -#: ../src/guestfs-actions.pod:8303 +#: ../src/guestfs-actions.pod:8310 msgid "guestfs_sfdiskM" msgstr "guestfs_sfdiskM" #. type: verbatim -#: ../src/guestfs-actions.pod:8305 +#: ../src/guestfs-actions.pod:8312 #, no-wrap msgid "" " int\n" @@ -43900,7 +43919,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8317 +#: ../src/guestfs-actions.pod:8324 msgid "" "This is a simplified interface to the C command, where " "partition sizes are specified in megabytes only (rounded to the nearest " @@ -43909,7 +43928,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8323 +#: ../src/guestfs-actions.pod:8330 msgid "" "See also: C, the L manpage and " "C" @@ -43918,12 +43937,12 @@ msgstr "" "C" #. type: =head2 -#: ../src/guestfs-actions.pod:8330 +#: ../src/guestfs-actions.pod:8337 msgid "guestfs_sfdisk_N" msgstr "guestfs_sfdisk_N" #. type: verbatim -#: ../src/guestfs-actions.pod:8332 +#: ../src/guestfs-actions.pod:8339 #, no-wrap msgid "" " int\n" @@ -43947,24 +43966,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8351 +#: ../src/guestfs-actions.pod:8358 msgid "" "For other parameters, see C. You should usually pass C<0> " "for the cyls/heads/sectors parameters." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8354 +#: ../src/guestfs-actions.pod:8361 msgid "See also: C" msgstr "関連項目: C" #. type: =head2 -#: ../src/guestfs-actions.pod:8360 +#: ../src/guestfs-actions.pod:8367 msgid "guestfs_sfdisk_disk_geometry" msgstr "guestfs_sfdisk_disk_geometry" #. type: verbatim -#: ../src/guestfs-actions.pod:8362 +#: ../src/guestfs-actions.pod:8369 #, no-wrap msgid "" " char *\n" @@ -43978,7 +43997,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8366 +#: ../src/guestfs-actions.pod:8373 msgid "" "This displays the disk geometry of C read from the partition table. " "Especially in the case where the underlying block device has been resized, " @@ -43987,12 +44006,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8379 +#: ../src/guestfs-actions.pod:8386 msgid "guestfs_sfdisk_kernel_geometry" msgstr "guestfs_sfdisk_kernel_geometry" #. type: verbatim -#: ../src/guestfs-actions.pod:8381 +#: ../src/guestfs-actions.pod:8388 #, no-wrap msgid "" " char *\n" @@ -44006,12 +44025,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8395 +#: ../src/guestfs-actions.pod:8402 msgid "guestfs_sfdisk_l" msgstr "guestfs_sfdisk_l" #. type: verbatim -#: ../src/guestfs-actions.pod:8397 +#: ../src/guestfs-actions.pod:8404 #, no-wrap msgid "" " char *\n" @@ -44025,7 +44044,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8401 +#: ../src/guestfs-actions.pod:8408 msgid "" "I In new code, use the L " "call instead." @@ -44034,17 +44053,17 @@ msgstr "" "guestfs_part_list> を使用してください。" #. type: textblock -#: ../src/guestfs-actions.pod:8412 +#: ../src/guestfs-actions.pod:8419 msgid "See also: C" msgstr "関連項目: C" #. type: =head2 -#: ../src/guestfs-actions.pod:8419 +#: ../src/guestfs-actions.pod:8426 msgid "guestfs_sh" msgstr "guestfs_sh" #. type: verbatim -#: ../src/guestfs-actions.pod:8421 +#: ../src/guestfs-actions.pod:8428 #, no-wrap msgid "" " char *\n" @@ -44058,22 +44077,22 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8428 +#: ../src/guestfs-actions.pod:8435 msgid "This is like C, but passes the command to:" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8436 +#: ../src/guestfs-actions.pod:8443 msgid "All the provisos about C apply to this call." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8443 +#: ../src/guestfs-actions.pod:8450 msgid "guestfs_sh_lines" msgstr "guestfs_sh_lines" #. type: verbatim -#: ../src/guestfs-actions.pod:8445 +#: ../src/guestfs-actions.pod:8452 #, no-wrap msgid "" " char **\n" @@ -44087,24 +44106,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8449 +#: ../src/guestfs-actions.pod:8456 msgid "" "This is the same as C, but splits the result into a list of " "lines." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8452 +#: ../src/guestfs-actions.pod:8459 msgid "See also: C" msgstr "関連項目: C" #. type: =head2 -#: ../src/guestfs-actions.pod:8460 +#: ../src/guestfs-actions.pod:8467 msgid "guestfs_shutdown" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8462 +#: ../src/guestfs-actions.pod:8469 #, no-wrap msgid "" " int\n" @@ -44113,7 +44132,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8465 +#: ../src/guestfs-actions.pod:8472 msgid "" "This is the opposite of C. It performs an orderly shutdown " "of the backend process(es). If the autosync flag is set (which is the " @@ -44121,26 +44140,26 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8475 +#: ../src/guestfs-actions.pod:8482 msgid "" "This call does I close or free up the handle. You still need to call " "C afterwards." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8478 +#: ../src/guestfs-actions.pod:8485 msgid "" "C will call this if you don't do it explicitly, but note that " "any errors are ignored in that case." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8483 +#: ../src/guestfs-actions.pod:8490 msgid "guestfs_sleep" msgstr "guestfs_sleep" #. type: verbatim -#: ../src/guestfs-actions.pod:8485 +#: ../src/guestfs-actions.pod:8492 #, no-wrap msgid "" " int\n" @@ -44154,17 +44173,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8493 +#: ../src/guestfs-actions.pod:8500 msgid "(Added in 1.0.41)" msgstr "(1.0.41 において追加)" #. type: =head2 -#: ../src/guestfs-actions.pod:8495 ../src/guestfs-structs.pod:109 +#: ../src/guestfs-actions.pod:8502 ../src/guestfs-structs.pod:109 msgid "guestfs_stat" msgstr "guestfs_stat" #. type: verbatim -#: ../src/guestfs-actions.pod:8497 +#: ../src/guestfs-actions.pod:8504 #, no-wrap msgid "" " struct guestfs_stat *\n" @@ -44178,12 +44197,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8511 ../src/guestfs-structs.pod:135 +#: ../src/guestfs-actions.pod:8518 ../src/guestfs-structs.pod:135 msgid "guestfs_statvfs" msgstr "guestfs_statvfs" #. type: verbatim -#: ../src/guestfs-actions.pod:8513 +#: ../src/guestfs-actions.pod:8520 #, no-wrap msgid "" " struct guestfs_statvfs *\n" @@ -44197,19 +44216,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8523 +#: ../src/guestfs-actions.pod:8530 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8529 +#: ../src/guestfs-actions.pod:8536 msgid "guestfs_strings" msgstr "guestfs_strings" #. type: verbatim -#: ../src/guestfs-actions.pod:8531 +#: ../src/guestfs-actions.pod:8538 #, no-wrap msgid "" " char **\n" @@ -44223,12 +44242,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8547 +#: ../src/guestfs-actions.pod:8554 msgid "guestfs_strings_e" msgstr "guestfs_strings_e" #. type: verbatim -#: ../src/guestfs-actions.pod:8549 +#: ../src/guestfs-actions.pod:8556 #, no-wrap msgid "" " char **\n" @@ -44244,14 +44263,14 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8554 +#: ../src/guestfs-actions.pod:8561 msgid "" "This is like the C command, but allows you to specify the " "encoding of strings that are looked for in the source file C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8564 +#: ../src/guestfs-actions.pod:8571 msgid "" "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of " "ISO-8859-X (this is what C uses)." @@ -44260,12 +44279,12 @@ msgstr "" "す) のような単一の 7 ビットのバイト文字。" #. type: =head2 -#: ../src/guestfs-actions.pod:8602 +#: ../src/guestfs-actions.pod:8609 msgid "guestfs_swapoff_device" msgstr "guestfs_swapoff_device" #. type: verbatim -#: ../src/guestfs-actions.pod:8604 +#: ../src/guestfs-actions.pod:8611 #, no-wrap msgid "" " int\n" @@ -44279,7 +44298,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8608 +#: ../src/guestfs-actions.pod:8615 msgid "" "This command disables the libguestfs appliance swap device or partition " "named C. See C." @@ -44288,12 +44307,12 @@ msgstr "" "う名前のパーティションを無効にします。 C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:8616 +#: ../src/guestfs-actions.pod:8623 msgid "guestfs_swapoff_file" msgstr "guestfs_swapoff_file" #. type: verbatim -#: ../src/guestfs-actions.pod:8618 +#: ../src/guestfs-actions.pod:8625 #, no-wrap msgid "" " int\n" @@ -44307,12 +44326,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8628 +#: ../src/guestfs-actions.pod:8635 msgid "guestfs_swapoff_label" msgstr "guestfs_swapoff_label" #. type: verbatim -#: ../src/guestfs-actions.pod:8630 +#: ../src/guestfs-actions.pod:8637 #, no-wrap msgid "" " int\n" @@ -44326,12 +44345,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8641 +#: ../src/guestfs-actions.pod:8648 msgid "guestfs_swapoff_uuid" msgstr "guestfs_swapoff_uuid" #. type: verbatim -#: ../src/guestfs-actions.pod:8643 +#: ../src/guestfs-actions.pod:8650 #, no-wrap msgid "" " int\n" @@ -44345,12 +44364,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8654 +#: ../src/guestfs-actions.pod:8661 msgid "guestfs_swapon_device" msgstr "guestfs_swapon_device" #. type: verbatim -#: ../src/guestfs-actions.pod:8656 +#: ../src/guestfs-actions.pod:8663 #, no-wrap msgid "" " int\n" @@ -44364,7 +44383,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8660 +#: ../src/guestfs-actions.pod:8667 msgid "" "This command enables the libguestfs appliance to use the swap device or " "partition named C. The increased memory is made available for all " @@ -44372,12 +44391,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8676 +#: ../src/guestfs-actions.pod:8683 msgid "guestfs_swapon_file" msgstr "guestfs_swapon_file" #. type: verbatim -#: ../src/guestfs-actions.pod:8678 +#: ../src/guestfs-actions.pod:8685 #, no-wrap msgid "" " int\n" @@ -44391,19 +44410,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8682 +#: ../src/guestfs-actions.pod:8689 msgid "" "This command enables swap to a file. See C for other " "notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8689 +#: ../src/guestfs-actions.pod:8696 msgid "guestfs_swapon_label" msgstr "guestfs_swapon_label" #. type: verbatim -#: ../src/guestfs-actions.pod:8691 +#: ../src/guestfs-actions.pod:8698 #, no-wrap msgid "" " int\n" @@ -44417,19 +44436,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8695 +#: ../src/guestfs-actions.pod:8702 msgid "" "This command enables swap to a labeled swap partition. See " "C for other notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8702 +#: ../src/guestfs-actions.pod:8709 msgid "guestfs_swapon_uuid" msgstr "guestfs_swapon_uuid" #. type: verbatim -#: ../src/guestfs-actions.pod:8704 +#: ../src/guestfs-actions.pod:8711 #, no-wrap msgid "" " int\n" @@ -44443,19 +44462,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8708 +#: ../src/guestfs-actions.pod:8715 msgid "" "This command enables swap to a swap partition with the given UUID. See " "C for other notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8715 +#: ../src/guestfs-actions.pod:8722 msgid "guestfs_sync" msgstr "guestfs_sync" #. type: verbatim -#: ../src/guestfs-actions.pod:8717 +#: ../src/guestfs-actions.pod:8724 #, no-wrap msgid "" " int\n" @@ -44467,12 +44486,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8730 +#: ../src/guestfs-actions.pod:8737 msgid "guestfs_tail" msgstr "guestfs_tail" #. type: verbatim -#: ../src/guestfs-actions.pod:8732 +#: ../src/guestfs-actions.pod:8739 #, no-wrap msgid "" " char **\n" @@ -44486,12 +44505,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8748 +#: ../src/guestfs-actions.pod:8755 msgid "guestfs_tail_n" msgstr "guestfs_tail_n" #. type: verbatim -#: ../src/guestfs-actions.pod:8750 +#: ../src/guestfs-actions.pod:8757 #, no-wrap msgid "" " char **\n" @@ -44507,12 +44526,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8772 +#: ../src/guestfs-actions.pod:8779 msgid "guestfs_tar_in" msgstr "guestfs_tar_in" #. type: verbatim -#: ../src/guestfs-actions.pod:8774 +#: ../src/guestfs-actions.pod:8781 #, no-wrap msgid "" " int\n" @@ -44528,24 +44547,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8782 +#: ../src/guestfs-actions.pod:8789 msgid "" "To upload a compressed tarball, use C or C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8787 ../src/guestfs-actions.pod:8804 -#: ../src/guestfs-actions.pod:8820 ../src/guestfs-actions.pod:8836 +#: ../src/guestfs-actions.pod:8794 ../src/guestfs-actions.pod:8811 +#: ../src/guestfs-actions.pod:8827 ../src/guestfs-actions.pod:8843 msgid "(Added in 1.0.3)" msgstr "(1.0.3 において追加)" #. type: =head2 -#: ../src/guestfs-actions.pod:8789 +#: ../src/guestfs-actions.pod:8796 msgid "guestfs_tar_out" msgstr "guestfs_tar_out" #. type: verbatim -#: ../src/guestfs-actions.pod:8791 +#: ../src/guestfs-actions.pod:8798 #, no-wrap msgid "" " int\n" @@ -44561,19 +44580,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8799 +#: ../src/guestfs-actions.pod:8806 msgid "" "To download a compressed tarball, use C or " "C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8806 +#: ../src/guestfs-actions.pod:8813 msgid "guestfs_tgz_in" msgstr "guestfs_tgz_in" #. type: verbatim -#: ../src/guestfs-actions.pod:8808 +#: ../src/guestfs-actions.pod:8815 #, no-wrap msgid "" " int\n" @@ -44589,18 +44608,18 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8816 +#: ../src/guestfs-actions.pod:8823 msgid "To upload an uncompressed tarball, use C." msgstr "" "非圧縮 tar ファイルをアップロードするには C を使用します。" #. type: =head2 -#: ../src/guestfs-actions.pod:8822 +#: ../src/guestfs-actions.pod:8829 msgid "guestfs_tgz_out" msgstr "guestfs_tgz_out" #. type: verbatim -#: ../src/guestfs-actions.pod:8824 +#: ../src/guestfs-actions.pod:8831 #, no-wrap msgid "" " int\n" @@ -44616,18 +44635,18 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8832 +#: ../src/guestfs-actions.pod:8839 msgid "To download an uncompressed tarball, use C." msgstr "" "非圧縮 tar ファイルをダウンロードするには C を使用します。" #. type: =head2 -#: ../src/guestfs-actions.pod:8838 +#: ../src/guestfs-actions.pod:8845 msgid "guestfs_touch" msgstr "guestfs_touch" #. type: verbatim -#: ../src/guestfs-actions.pod:8840 +#: ../src/guestfs-actions.pod:8847 #, no-wrap msgid "" " int\n" @@ -44641,12 +44660,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8855 +#: ../src/guestfs-actions.pod:8862 msgid "guestfs_truncate" msgstr "guestfs_truncate" #. type: verbatim -#: ../src/guestfs-actions.pod:8857 +#: ../src/guestfs-actions.pod:8864 #, no-wrap msgid "" " int\n" @@ -44660,12 +44679,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8868 +#: ../src/guestfs-actions.pod:8875 msgid "guestfs_truncate_size" msgstr "guestfs_truncate_size" #. type: verbatim -#: ../src/guestfs-actions.pod:8870 +#: ../src/guestfs-actions.pod:8877 #, no-wrap msgid "" " int\n" @@ -44681,7 +44700,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8878 +#: ../src/guestfs-actions.pod:8885 msgid "" "If the current file size is less than C then the file is extended to " "the required size with zero bytes. This creates a sparse file (ie. disk " @@ -44690,12 +44709,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8888 +#: ../src/guestfs-actions.pod:8895 msgid "guestfs_tune2fs" msgstr "guestfs_tune2fs" #. type: verbatim -#: ../src/guestfs-actions.pod:8890 +#: ../src/guestfs-actions.pod:8897 #, no-wrap msgid "" " int\n" @@ -44711,7 +44730,7 @@ msgstr "" "\n" #. type: verbatim -#: ../src/guestfs-actions.pod:8900 +#: ../src/guestfs-actions.pod:8907 #, no-wrap msgid "" " GUESTFS_TUNE2FS_FORCE, int force,\n" @@ -44739,7 +44758,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8980 +#: ../src/guestfs-actions.pod:8987 msgid "" "To get the current values of filesystem parameters, see " "C. For precise details of how tune2fs works, see the " @@ -44747,12 +44766,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8988 +#: ../src/guestfs-actions.pod:8995 msgid "guestfs_tune2fs_va" msgstr "guestfs_tune2fs_va" #. type: verbatim -#: ../src/guestfs-actions.pod:8990 +#: ../src/guestfs-actions.pod:8997 #, no-wrap msgid "" " int\n" @@ -44768,17 +44787,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8995 +#: ../src/guestfs-actions.pod:9002 msgid "This is the \"va_list variant\" of L." msgstr "これは L の \"va_list variant\" です。" #. type: =head2 -#: ../src/guestfs-actions.pod:8999 +#: ../src/guestfs-actions.pod:9006 msgid "guestfs_tune2fs_argv" msgstr "guestfs_tune2fs_argv" #. type: verbatim -#: ../src/guestfs-actions.pod:9001 +#: ../src/guestfs-actions.pod:9008 #, no-wrap msgid "" " int\n" @@ -44794,17 +44813,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9006 +#: ../src/guestfs-actions.pod:9013 msgid "This is the \"argv variant\" of L." msgstr "これは L の \"argv variant\" です。" #. type: =head2 -#: ../src/guestfs-actions.pod:9010 +#: ../src/guestfs-actions.pod:9017 msgid "guestfs_tune2fs_l" msgstr "guestfs_tune2fs_l" #. type: verbatim -#: ../src/guestfs-actions.pod:9012 +#: ../src/guestfs-actions.pod:9019 #, no-wrap msgid "" " char **\n" @@ -44818,12 +44837,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9032 +#: ../src/guestfs-actions.pod:9039 msgid "guestfs_txz_in" msgstr "guestfs_txz_in" #. type: verbatim -#: ../src/guestfs-actions.pod:9034 +#: ../src/guestfs-actions.pod:9041 #, no-wrap msgid "" " int\n" @@ -44839,12 +44858,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9046 +#: ../src/guestfs-actions.pod:9053 msgid "guestfs_txz_out" msgstr "guestfs_txz_out" #. type: verbatim -#: ../src/guestfs-actions.pod:9048 +#: ../src/guestfs-actions.pod:9055 #, no-wrap msgid "" " int\n" @@ -44860,12 +44879,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9060 +#: ../src/guestfs-actions.pod:9067 msgid "guestfs_umask" msgstr "guestfs_umask" #. type: verbatim -#: ../src/guestfs-actions.pod:9062 +#: ../src/guestfs-actions.pod:9069 #, no-wrap msgid "" " int\n" @@ -44879,7 +44898,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9078 +#: ../src/guestfs-actions.pod:9085 msgid "" "See also C, L, C, " "C." @@ -44887,12 +44906,12 @@ msgstr "" "C, L, C, C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:9087 +#: ../src/guestfs-actions.pod:9094 msgid "guestfs_umount" msgstr "guestfs_umount" #. type: verbatim -#: ../src/guestfs-actions.pod:9089 +#: ../src/guestfs-actions.pod:9096 #, no-wrap msgid "" " int\n" @@ -44906,12 +44925,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9101 +#: ../src/guestfs-actions.pod:9108 msgid "guestfs_umount_all" msgstr "guestfs_umount_all" #. type: verbatim -#: ../src/guestfs-actions.pod:9103 +#: ../src/guestfs-actions.pod:9110 #, no-wrap msgid "" " int\n" @@ -44923,12 +44942,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9114 +#: ../src/guestfs-actions.pod:9121 msgid "guestfs_umount_local" msgstr "guestfs_umount_local" #. type: verbatim -#: ../src/guestfs-actions.pod:9116 +#: ../src/guestfs-actions.pod:9123 #, no-wrap msgid "" " int\n" @@ -44942,7 +44961,7 @@ msgstr "" "\n" #. type: verbatim -#: ../src/guestfs-actions.pod:9125 +#: ../src/guestfs-actions.pod:9132 #, no-wrap msgid "" " GUESTFS_UMOUNT_LOCAL_RETRY, int retry,\n" @@ -44952,12 +44971,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9136 +#: ../src/guestfs-actions.pod:9143 msgid "guestfs_umount_local_va" msgstr "guestfs_umount_local_va" #. type: verbatim -#: ../src/guestfs-actions.pod:9138 +#: ../src/guestfs-actions.pod:9145 #, no-wrap msgid "" " int\n" @@ -44971,17 +44990,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9142 +#: ../src/guestfs-actions.pod:9149 msgid "This is the \"va_list variant\" of L." msgstr "これは L の \"va_list variant\" です。" #. type: =head2 -#: ../src/guestfs-actions.pod:9146 +#: ../src/guestfs-actions.pod:9153 msgid "guestfs_umount_local_argv" msgstr "guestfs_umount_local_argv" #. type: verbatim -#: ../src/guestfs-actions.pod:9148 +#: ../src/guestfs-actions.pod:9155 #, no-wrap msgid "" " int\n" @@ -44995,17 +45014,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9152 +#: ../src/guestfs-actions.pod:9159 msgid "This is the \"argv variant\" of L." msgstr "これは L の \"argv variant\" です。" #. type: =head2 -#: ../src/guestfs-actions.pod:9156 +#: ../src/guestfs-actions.pod:9163 msgid "guestfs_upload" msgstr "guestfs_upload" #. type: verbatim -#: ../src/guestfs-actions.pod:9158 +#: ../src/guestfs-actions.pod:9165 #, no-wrap msgid "" " int\n" @@ -45021,17 +45040,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9168 +#: ../src/guestfs-actions.pod:9175 msgid "See also C." msgstr "C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:9179 +#: ../src/guestfs-actions.pod:9186 msgid "guestfs_upload_offset" msgstr "guestfs_upload_offset" #. type: verbatim -#: ../src/guestfs-actions.pod:9181 +#: ../src/guestfs-actions.pod:9188 #, no-wrap msgid "" " int\n" @@ -45049,7 +45068,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9197 +#: ../src/guestfs-actions.pod:9204 msgid "" "Note that there is no limit on the amount of data that can be uploaded with " "this call, unlike with C, and this call always writes the " @@ -45057,17 +45076,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9202 +#: ../src/guestfs-actions.pod:9209 msgid "See also C, C." msgstr "C, C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:9213 +#: ../src/guestfs-actions.pod:9220 msgid "guestfs_utimens" msgstr "guestfs_utimens" #. type: verbatim -#: ../src/guestfs-actions.pod:9215 +#: ../src/guestfs-actions.pod:9222 #, no-wrap msgid "" " int\n" @@ -45089,12 +45108,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9244 ../src/guestfs-structs.pod:175 +#: ../src/guestfs-actions.pod:9251 ../src/guestfs-structs.pod:175 msgid "guestfs_version" msgstr "guestfs_version" #. type: verbatim -#: ../src/guestfs-actions.pod:9246 +#: ../src/guestfs-actions.pod:9253 #, no-wrap msgid "" " struct guestfs_version *\n" @@ -45106,7 +45125,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9274 +#: ../src/guestfs-actions.pod:9281 msgid "" "I Don't use this call to test for availability of features. In " "enterprise distributions we backport features from later versions into " @@ -45115,24 +45134,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9280 +#: ../src/guestfs-actions.pod:9287 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9284 +#: ../src/guestfs-actions.pod:9291 msgid "(Added in 1.0.58)" msgstr "(1.0.58 において追加)" #. type: =head2 -#: ../src/guestfs-actions.pod:9286 +#: ../src/guestfs-actions.pod:9293 msgid "guestfs_vfs_label" msgstr "guestfs_vfs_label" #. type: verbatim -#: ../src/guestfs-actions.pod:9288 +#: ../src/guestfs-actions.pod:9295 #, no-wrap msgid "" " char *\n" @@ -45146,24 +45165,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9297 +#: ../src/guestfs-actions.pod:9304 msgid "To find a filesystem from the label, use C." msgstr "" "ラベルからファイルシステムを検索するには C を使用しま" "す。" #. type: textblock -#: ../src/guestfs-actions.pod:9302 ../src/guestfs-actions.pod:9339 +#: ../src/guestfs-actions.pod:9309 ../src/guestfs-actions.pod:9346 msgid "(Added in 1.3.18)" msgstr "(1.3.18 において追加)" #. type: =head2 -#: ../src/guestfs-actions.pod:9304 +#: ../src/guestfs-actions.pod:9311 msgid "guestfs_vfs_type" msgstr "guestfs_vfs_type" #. type: verbatim -#: ../src/guestfs-actions.pod:9306 +#: ../src/guestfs-actions.pod:9313 #, no-wrap msgid "" " char *\n" @@ -45177,12 +45196,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9323 +#: ../src/guestfs-actions.pod:9330 msgid "guestfs_vfs_uuid" msgstr "guestfs_vfs_uuid" #. type: verbatim -#: ../src/guestfs-actions.pod:9325 +#: ../src/guestfs-actions.pod:9332 #, no-wrap msgid "" " char *\n" @@ -45196,18 +45215,18 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9334 +#: ../src/guestfs-actions.pod:9341 msgid "To find a filesystem from the UUID, use C." msgstr "" "UUID からファイルシステムを検索するには C を使用します。" #. type: =head2 -#: ../src/guestfs-actions.pod:9341 +#: ../src/guestfs-actions.pod:9348 msgid "guestfs_vg_activate" msgstr "guestfs_vg_activate" #. type: verbatim -#: ../src/guestfs-actions.pod:9343 +#: ../src/guestfs-actions.pod:9350 #, no-wrap msgid "" " int\n" @@ -45223,12 +45242,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9360 +#: ../src/guestfs-actions.pod:9367 msgid "guestfs_vg_activate_all" msgstr "guestfs_vg_activate_all" #. type: verbatim -#: ../src/guestfs-actions.pod:9362 +#: ../src/guestfs-actions.pod:9369 #, no-wrap msgid "" " int\n" @@ -45242,12 +45261,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9375 +#: ../src/guestfs-actions.pod:9382 msgid "guestfs_vgcreate" msgstr "guestfs_vgcreate" #. type: verbatim -#: ../src/guestfs-actions.pod:9377 +#: ../src/guestfs-actions.pod:9384 #, no-wrap msgid "" " int\n" @@ -45263,12 +45282,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9389 +#: ../src/guestfs-actions.pod:9396 msgid "guestfs_vglvuuids" msgstr "guestfs_vglvuuids" #. type: verbatim -#: ../src/guestfs-actions.pod:9391 +#: ../src/guestfs-actions.pod:9398 #, no-wrap msgid "" " char **\n" @@ -45282,24 +45301,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9398 +#: ../src/guestfs-actions.pod:9405 msgid "" "You can use this along with C and C calls to " "associate logical volumes and volume groups." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9401 +#: ../src/guestfs-actions.pod:9408 msgid "See also C." msgstr "C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:9409 +#: ../src/guestfs-actions.pod:9416 msgid "guestfs_vgmeta" msgstr "guestfs_vgmeta" #. type: verbatim -#: ../src/guestfs-actions.pod:9411 +#: ../src/guestfs-actions.pod:9418 #, no-wrap msgid "" " char *\n" @@ -45315,17 +45334,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9426 +#: ../src/guestfs-actions.pod:9433 msgid "(Added in 1.17.20)" msgstr "(1.17.20 にて追加)" #. type: =head2 -#: ../src/guestfs-actions.pod:9428 +#: ../src/guestfs-actions.pod:9435 msgid "guestfs_vgpvuuids" msgstr "guestfs_vgpvuuids" #. type: verbatim -#: ../src/guestfs-actions.pod:9430 +#: ../src/guestfs-actions.pod:9437 #, no-wrap msgid "" " char **\n" @@ -45339,24 +45358,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9437 +#: ../src/guestfs-actions.pod:9444 msgid "" "You can use this along with C and C calls to " "associate physical volumes and volume groups." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9440 +#: ../src/guestfs-actions.pod:9447 msgid "See also C." msgstr "C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:9448 +#: ../src/guestfs-actions.pod:9455 msgid "guestfs_vgremove" msgstr "guestfs_vgremove" #. type: verbatim -#: ../src/guestfs-actions.pod:9450 +#: ../src/guestfs-actions.pod:9457 #, no-wrap msgid "" " int\n" @@ -45370,12 +45389,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9463 +#: ../src/guestfs-actions.pod:9470 msgid "guestfs_vgrename" msgstr "guestfs_vgrename" #. type: verbatim -#: ../src/guestfs-actions.pod:9465 +#: ../src/guestfs-actions.pod:9472 #, no-wrap msgid "" " int\n" @@ -45391,12 +45410,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9476 +#: ../src/guestfs-actions.pod:9483 msgid "guestfs_vgs" msgstr "guestfs_vgs" #. type: verbatim -#: ../src/guestfs-actions.pod:9478 +#: ../src/guestfs-actions.pod:9485 #, no-wrap msgid "" " char **\n" @@ -45408,17 +45427,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9487 +#: ../src/guestfs-actions.pod:9494 msgid "See also C." msgstr "C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:9495 +#: ../src/guestfs-actions.pod:9502 msgid "guestfs_vgs_full" msgstr "guestfs_vgs_full" #. type: verbatim -#: ../src/guestfs-actions.pod:9497 +#: ../src/guestfs-actions.pod:9504 #, no-wrap msgid "" " struct guestfs_lvm_vg_list *\n" @@ -45430,19 +45449,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9503 +#: ../src/guestfs-actions.pod:9510 msgid "" "This function returns a C, or NULL if there " "was an error. I after use>." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9509 +#: ../src/guestfs-actions.pod:9516 msgid "guestfs_vgscan" msgstr "guestfs_vgscan" #. type: verbatim -#: ../src/guestfs-actions.pod:9511 +#: ../src/guestfs-actions.pod:9518 #, no-wrap msgid "" " int\n" @@ -45454,12 +45473,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9521 +#: ../src/guestfs-actions.pod:9528 msgid "guestfs_vguuid" msgstr "guestfs_vguuid" #. type: verbatim -#: ../src/guestfs-actions.pod:9523 +#: ../src/guestfs-actions.pod:9530 #, no-wrap msgid "" " char *\n" @@ -45473,12 +45492,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9534 +#: ../src/guestfs-actions.pod:9541 msgid "guestfs_wait_ready" msgstr "guestfs_wait_ready" #. type: verbatim -#: ../src/guestfs-actions.pod:9536 +#: ../src/guestfs-actions.pod:9543 #, no-wrap msgid "" " int\n" @@ -45490,7 +45509,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9539 +#: ../src/guestfs-actions.pod:9546 msgid "" "I In new code, use the L call " "instead." @@ -45499,12 +45518,12 @@ msgstr "" "を使用してください。" #. type: textblock -#: ../src/guestfs-actions.pod:9546 +#: ../src/guestfs-actions.pod:9553 msgid "This function is a no op." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9548 +#: ../src/guestfs-actions.pod:9555 msgid "" "In versions of the API E 1.0.71 you had to call this function just after " "calling C to wait for the launch to complete. However this " @@ -45512,19 +45531,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9553 +#: ../src/guestfs-actions.pod:9560 msgid "" "If you see any calls to this function in code then you can just remove them, " "unless you want to retain compatibility with older versions of the API." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9561 +#: ../src/guestfs-actions.pod:9568 msgid "guestfs_wc_c" msgstr "guestfs_wc_c" #. type: verbatim -#: ../src/guestfs-actions.pod:9563 +#: ../src/guestfs-actions.pod:9570 #, no-wrap msgid "" " int\n" @@ -45538,12 +45557,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9574 +#: ../src/guestfs-actions.pod:9581 msgid "guestfs_wc_l" msgstr "guestfs_wc_l" #. type: verbatim -#: ../src/guestfs-actions.pod:9576 +#: ../src/guestfs-actions.pod:9583 #, no-wrap msgid "" " int\n" @@ -45557,12 +45576,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9587 +#: ../src/guestfs-actions.pod:9594 msgid "guestfs_wc_w" msgstr "guestfs_wc_w" #. type: verbatim -#: ../src/guestfs-actions.pod:9589 +#: ../src/guestfs-actions.pod:9596 #, no-wrap msgid "" " int\n" @@ -45576,12 +45595,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9600 +#: ../src/guestfs-actions.pod:9607 msgid "guestfs_wipefs" msgstr "guestfs_wipefs" #. type: verbatim -#: ../src/guestfs-actions.pod:9602 +#: ../src/guestfs-actions.pod:9609 #, no-wrap msgid "" " int\n" @@ -45595,19 +45614,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9612 +#: ../src/guestfs-actions.pod:9619 msgid "" "Compare with C which zeroes the first few blocks of a device." msgstr "" "デバイスの先頭数ブロックにゼロを書き込む C と比較します。" #. type: =head2 -#: ../src/guestfs-actions.pod:9619 +#: ../src/guestfs-actions.pod:9626 msgid "guestfs_write" msgstr "guestfs_write" #. type: verbatim -#: ../src/guestfs-actions.pod:9621 +#: ../src/guestfs-actions.pod:9628 #, no-wrap msgid "" " int\n" @@ -45625,17 +45644,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9630 +#: ../src/guestfs-actions.pod:9637 msgid "See also C." msgstr "C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:9639 +#: ../src/guestfs-actions.pod:9646 msgid "guestfs_write_append" msgstr "guestfs_write_append" #. type: verbatim -#: ../src/guestfs-actions.pod:9641 +#: ../src/guestfs-actions.pod:9648 #, no-wrap msgid "" " int\n" @@ -45653,17 +45672,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9650 +#: ../src/guestfs-actions.pod:9657 msgid "See also C." msgstr "C 参照。" #. type: =head2 -#: ../src/guestfs-actions.pod:9659 +#: ../src/guestfs-actions.pod:9666 msgid "guestfs_write_file" msgstr "guestfs_write_file" #. type: verbatim -#: ../src/guestfs-actions.pod:9661 +#: ../src/guestfs-actions.pod:9668 #, no-wrap msgid "" " int\n" @@ -45681,7 +45700,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9667 +#: ../src/guestfs-actions.pod:9674 msgid "" "I In new code, use the L call " "instead." @@ -45690,14 +45709,14 @@ msgstr "" "使用してください。" #. type: =head2 -#: ../src/guestfs-actions.pod:9692 +#: ../src/guestfs-actions.pod:9699 #, fuzzy #| msgid "guestfs_isoinfo" msgid "guestfs_xfs_info" msgstr "guestfs_isoinfo" #. type: verbatim -#: ../src/guestfs-actions.pod:9694 +#: ../src/guestfs-actions.pod:9701 #, fuzzy, no-wrap #| msgid "" #| " struct guestfs_isoinfo *\n" @@ -45716,7 +45735,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9705 +#: ../src/guestfs-actions.pod:9712 #, fuzzy #| msgid "" #| "This function returns a C, or NULL if there was an " @@ -45729,12 +45748,12 @@ msgstr "" "呼び出し元は使用後に C を呼び出す必要があります>。" #. type: =head2 -#: ../src/guestfs-actions.pod:9709 +#: ../src/guestfs-actions.pod:9716 msgid "guestfs_zegrep" msgstr "guestfs_zegrep" #. type: verbatim -#: ../src/guestfs-actions.pod:9711 +#: ../src/guestfs-actions.pod:9718 #, no-wrap msgid "" " char **\n" @@ -45750,12 +45769,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9728 +#: ../src/guestfs-actions.pod:9735 msgid "guestfs_zegrepi" msgstr "guestfs_zegrepi" #. type: verbatim -#: ../src/guestfs-actions.pod:9730 +#: ../src/guestfs-actions.pod:9737 #, no-wrap msgid "" " char **\n" @@ -45771,12 +45790,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9747 +#: ../src/guestfs-actions.pod:9754 msgid "guestfs_zero" msgstr "guestfs_zero" #. type: verbatim -#: ../src/guestfs-actions.pod:9749 +#: ../src/guestfs-actions.pod:9756 #, no-wrap msgid "" " int\n" @@ -45790,7 +45809,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9763 +#: ../src/guestfs-actions.pod:9770 msgid "" "See also: C, C, " "C" @@ -45799,12 +45818,12 @@ msgstr "" "C" #. type: =head2 -#: ../src/guestfs-actions.pod:9775 +#: ../src/guestfs-actions.pod:9782 msgid "guestfs_zero_device" msgstr "guestfs_zero_device" #. type: verbatim -#: ../src/guestfs-actions.pod:9777 +#: ../src/guestfs-actions.pod:9784 #, no-wrap msgid "" " int\n" @@ -45818,24 +45837,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9781 +#: ../src/guestfs-actions.pod:9788 msgid "" "This command writes zeroes over the entire C. Compare with " "C which just zeroes the first few blocks of a device." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9796 +#: ../src/guestfs-actions.pod:9803 msgid "(Added in 1.3.1)" msgstr "(1.3.1 において追加)" #. type: =head2 -#: ../src/guestfs-actions.pod:9798 +#: ../src/guestfs-actions.pod:9805 msgid "guestfs_zero_free_space" msgstr "guestfs_zero_free_space" #. type: verbatim -#: ../src/guestfs-actions.pod:9800 +#: ../src/guestfs-actions.pod:9807 #, no-wrap msgid "" " int\n" @@ -45849,7 +45868,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9810 +#: ../src/guestfs-actions.pod:9817 msgid "" "Free space is not \"trimmed\". You may want to call C " "either as an alternative to this, or after calling this, depending on your " @@ -45857,12 +45876,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9823 +#: ../src/guestfs-actions.pod:9830 msgid "guestfs_zerofree" msgstr "guestfs_zerofree" #. type: verbatim -#: ../src/guestfs-actions.pod:9825 +#: ../src/guestfs-actions.pod:9832 #, no-wrap msgid "" " int\n" @@ -45876,12 +45895,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9844 +#: ../src/guestfs-actions.pod:9851 msgid "guestfs_zfgrep" msgstr "guestfs_zfgrep" #. type: verbatim -#: ../src/guestfs-actions.pod:9846 +#: ../src/guestfs-actions.pod:9853 #, no-wrap msgid "" " char **\n" @@ -45897,12 +45916,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9863 +#: ../src/guestfs-actions.pod:9870 msgid "guestfs_zfgrepi" msgstr "guestfs_zfgrepi" #. type: verbatim -#: ../src/guestfs-actions.pod:9865 +#: ../src/guestfs-actions.pod:9872 #, no-wrap msgid "" " char **\n" @@ -45918,12 +45937,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9882 +#: ../src/guestfs-actions.pod:9889 msgid "guestfs_zfile" msgstr "guestfs_zfile" #. type: verbatim -#: ../src/guestfs-actions.pod:9884 +#: ../src/guestfs-actions.pod:9891 #, no-wrap msgid "" " char *\n" @@ -45939,7 +45958,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9889 +#: ../src/guestfs-actions.pod:9896 msgid "" "I In new code, use the L call " "instead." @@ -45948,19 +45967,19 @@ msgstr "" "使用してください。" #. type: textblock -#: ../src/guestfs-actions.pod:9901 +#: ../src/guestfs-actions.pod:9908 msgid "" "Since 1.0.63, use C instead which can now process compressed " "files." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9909 +#: ../src/guestfs-actions.pod:9916 msgid "guestfs_zgrep" msgstr "guestfs_zgrep" #. type: verbatim -#: ../src/guestfs-actions.pod:9911 +#: ../src/guestfs-actions.pod:9918 #, no-wrap msgid "" " char **\n" @@ -45976,12 +45995,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9928 +#: ../src/guestfs-actions.pod:9935 msgid "guestfs_zgrepi" msgstr "guestfs_zgrepi" #. type: verbatim -#: ../src/guestfs-actions.pod:9930 +#: ../src/guestfs-actions.pod:9937 #, no-wrap msgid "" " char **\n" diff --git a/po-docs/libguestfs-docs.pot b/po-docs/libguestfs-docs.pot index dd4c6173b..07aadf5ec 100644 --- a/po-docs/libguestfs-docs.pot +++ b/po-docs/libguestfs-docs.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libguestfs 1.19.22\n" "Report-Msgid-Bugs-To: libguestfs@redhat.com\n" -"POT-Creation-Date: 2012-07-19 13:50+0200\n" +"POT-Creation-Date: 2012-07-19 16:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2570,7 +2570,7 @@ msgid "" msgstr "" #. type: =head2 -#: ../cat/virt-ls.pod:181 ../fish/guestfish-actions.pod:5108 +#: ../cat/virt-ls.pod:181 ../fish/guestfish-actions.pod:5115 msgid "path" msgstr "" @@ -7608,7 +7608,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:208 ../fish/guestfish-actions.pod:222 ../fish/guestfish-actions.pod:1072 ../fish/guestfish-actions.pod:1107 ../fish/guestfish-actions.pod:1256 ../fish/guestfish-actions.pod:1324 ../fish/guestfish-actions.pod:1851 ../fish/guestfish-actions.pod:1865 ../fish/guestfish-actions.pod:3068 ../fish/guestfish-actions.pod:3899 ../fish/guestfish-actions.pod:4315 ../fish/guestfish-actions.pod:5043 ../fish/guestfish-actions.pod:5291 ../fish/guestfish-actions.pod:5311 ../fish/guestfish-actions.pod:5330 ../fish/guestfish-actions.pod:5368 ../fish/guestfish-actions.pod:6150 ../fish/guestfish-actions.pod:6278 ../src/guestfs-actions.pod:10 ../src/guestfs-actions.pod:301 ../src/guestfs-actions.pod:322 ../src/guestfs-actions.pod:1835 ../src/guestfs-actions.pod:1892 ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:2260 ../src/guestfs-actions.pod:2981 ../src/guestfs-actions.pod:3002 ../src/guestfs-actions.pod:4700 ../src/guestfs-actions.pod:6059 ../src/guestfs-actions.pod:6867 ../src/guestfs-actions.pod:7961 ../src/guestfs-actions.pod:8272 ../src/guestfs-actions.pod:8313 ../src/guestfs-actions.pod:8344 ../src/guestfs-actions.pod:8404 ../src/guestfs-actions.pod:9542 ../src/guestfs-actions.pod:9670 ../src/guestfs-actions.pod:9892 +#: ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:208 ../fish/guestfish-actions.pod:222 ../fish/guestfish-actions.pod:1072 ../fish/guestfish-actions.pod:1107 ../fish/guestfish-actions.pod:1256 ../fish/guestfish-actions.pod:1324 ../fish/guestfish-actions.pod:1851 ../fish/guestfish-actions.pod:1865 ../fish/guestfish-actions.pod:3068 ../fish/guestfish-actions.pod:3899 ../fish/guestfish-actions.pod:4315 ../fish/guestfish-actions.pod:5050 ../fish/guestfish-actions.pod:5298 ../fish/guestfish-actions.pod:5318 ../fish/guestfish-actions.pod:5337 ../fish/guestfish-actions.pod:5375 ../fish/guestfish-actions.pod:6157 ../fish/guestfish-actions.pod:6285 ../src/guestfs-actions.pod:10 ../src/guestfs-actions.pod:301 ../src/guestfs-actions.pod:322 ../src/guestfs-actions.pod:1835 ../src/guestfs-actions.pod:1892 ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:2260 ../src/guestfs-actions.pod:2981 ../src/guestfs-actions.pod:3002 ../src/guestfs-actions.pod:4700 ../src/guestfs-actions.pod:6059 ../src/guestfs-actions.pod:6867 ../src/guestfs-actions.pod:7968 ../src/guestfs-actions.pod:8279 ../src/guestfs-actions.pod:8320 ../src/guestfs-actions.pod:8351 ../src/guestfs-actions.pod:8411 ../src/guestfs-actions.pod:9549 ../src/guestfs-actions.pod:9677 ../src/guestfs-actions.pod:9899 msgid "" "Deprecated functions will not be removed from the API, but the fact that " "they are deprecated indicates that there are problems with correct use of " @@ -7772,7 +7772,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:125 ../fish/guestfish-actions.pod:185 ../fish/guestfish-actions.pod:669 ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:966 ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:1025 ../fish/guestfish-actions.pod:1034 ../fish/guestfish-actions.pod:1043 ../fish/guestfish-actions.pod:1057 ../fish/guestfish-actions.pod:1243 ../fish/guestfish-actions.pod:1686 ../fish/guestfish-actions.pod:2527 ../fish/guestfish-actions.pod:3635 ../fish/guestfish-actions.pod:3882 ../fish/guestfish-actions.pod:3915 ../fish/guestfish-actions.pod:4078 ../fish/guestfish-actions.pod:4108 ../fish/guestfish-actions.pod:4251 ../fish/guestfish-actions.pod:4267 ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:5019 ../fish/guestfish-actions.pod:5752 ../fish/guestfish-actions.pod:5834 +#: ../fish/guestfish-actions.pod:125 ../fish/guestfish-actions.pod:185 ../fish/guestfish-actions.pod:669 ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:966 ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:1025 ../fish/guestfish-actions.pod:1034 ../fish/guestfish-actions.pod:1043 ../fish/guestfish-actions.pod:1057 ../fish/guestfish-actions.pod:1243 ../fish/guestfish-actions.pod:1686 ../fish/guestfish-actions.pod:2527 ../fish/guestfish-actions.pod:3635 ../fish/guestfish-actions.pod:3882 ../fish/guestfish-actions.pod:3915 ../fish/guestfish-actions.pod:4078 ../fish/guestfish-actions.pod:4108 ../fish/guestfish-actions.pod:4251 ../fish/guestfish-actions.pod:4267 ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:5026 ../fish/guestfish-actions.pod:5759 ../fish/guestfish-actions.pod:5841 msgid "" "This command has one or more optional arguments. See L." @@ -8532,7 +8532,7 @@ msgid "This command uploads base64-encoded data from C to C instead of a filename to read/write from stdin/stdout." msgstr "" @@ -8929,7 +8929,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:656 ../fish/guestfish-actions.pod:3584 ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:5682 ../src/guestfs-actions.pod:983 ../src/guestfs-actions.pod:5563 ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:8914 +#: ../fish/guestfish-actions.pod:656 ../fish/guestfish-actions.pod:3584 ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:5689 ../src/guestfs-actions.pod:983 ../src/guestfs-actions.pod:5563 ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:8921 msgid "The optional parameters are:" msgstr "" @@ -9265,7 +9265,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:804 ../fish/guestfish-actions.pod:939 ../fish/guestfish-actions.pod:951 ../fish/guestfish-actions.pod:1278 ../fish/guestfish-actions.pod:1288 ../fish/guestfish-actions.pod:1355 ../fish/guestfish-actions.pod:1365 ../fish/guestfish-actions.pod:1574 ../fish/guestfish-actions.pod:2041 ../fish/guestfish-actions.pod:2051 ../fish/guestfish-actions.pod:2101 ../fish/guestfish-actions.pod:2116 ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2145 ../fish/guestfish-actions.pod:4579 ../fish/guestfish-actions.pod:4594 ../fish/guestfish-actions.pod:4670 ../fish/guestfish-actions.pod:4687 ../fish/guestfish-actions.pod:4702 ../fish/guestfish-actions.pod:5449 ../fish/guestfish-actions.pod:5495 ../fish/guestfish-actions.pod:5580 ../fish/guestfish-actions.pod:5595 ../fish/guestfish-actions.pod:6114 ../fish/guestfish-actions.pod:6126 ../fish/guestfish-actions.pod:6144 ../fish/guestfish-actions.pod:6172 ../fish/guestfish-actions.pod:6182 ../fish/guestfish-actions.pod:6250 ../fish/guestfish-actions.pod:6260 ../fish/guestfish-actions.pod:6289 ../fish/guestfish-actions.pod:6299 ../src/guestfs-actions.pod:1256 ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1455 ../src/guestfs-actions.pod:2195 ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2317 ../src/guestfs-actions.pod:2336 ../src/guestfs-actions.pod:2605 ../src/guestfs-actions.pod:3290 ../src/guestfs-actions.pod:3309 ../src/guestfs-actions.pod:3374 ../src/guestfs-actions.pod:3398 ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3444 ../src/guestfs-actions.pod:7248 ../src/guestfs-actions.pod:7274 ../src/guestfs-actions.pod:7405 ../src/guestfs-actions.pod:7431 ../src/guestfs-actions.pod:7455 ../src/guestfs-actions.pod:8542 ../src/guestfs-actions.pod:8597 ../src/guestfs-actions.pod:8743 ../src/guestfs-actions.pod:8767 ../src/guestfs-actions.pod:9634 ../src/guestfs-actions.pod:9654 ../src/guestfs-actions.pod:9687 ../src/guestfs-actions.pod:9723 ../src/guestfs-actions.pod:9742 ../src/guestfs-actions.pod:9858 ../src/guestfs-actions.pod:9877 ../src/guestfs-actions.pod:9923 ../src/guestfs-actions.pod:9942 +#: ../fish/guestfish-actions.pod:804 ../fish/guestfish-actions.pod:939 ../fish/guestfish-actions.pod:951 ../fish/guestfish-actions.pod:1278 ../fish/guestfish-actions.pod:1288 ../fish/guestfish-actions.pod:1355 ../fish/guestfish-actions.pod:1365 ../fish/guestfish-actions.pod:1574 ../fish/guestfish-actions.pod:2041 ../fish/guestfish-actions.pod:2051 ../fish/guestfish-actions.pod:2101 ../fish/guestfish-actions.pod:2116 ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2145 ../fish/guestfish-actions.pod:4579 ../fish/guestfish-actions.pod:4594 ../fish/guestfish-actions.pod:4670 ../fish/guestfish-actions.pod:4687 ../fish/guestfish-actions.pod:4702 ../fish/guestfish-actions.pod:5456 ../fish/guestfish-actions.pod:5502 ../fish/guestfish-actions.pod:5587 ../fish/guestfish-actions.pod:5602 ../fish/guestfish-actions.pod:6121 ../fish/guestfish-actions.pod:6133 ../fish/guestfish-actions.pod:6151 ../fish/guestfish-actions.pod:6179 ../fish/guestfish-actions.pod:6189 ../fish/guestfish-actions.pod:6257 ../fish/guestfish-actions.pod:6267 ../fish/guestfish-actions.pod:6296 ../fish/guestfish-actions.pod:6306 ../src/guestfs-actions.pod:1256 ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1455 ../src/guestfs-actions.pod:2195 ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2317 ../src/guestfs-actions.pod:2336 ../src/guestfs-actions.pod:2605 ../src/guestfs-actions.pod:3290 ../src/guestfs-actions.pod:3309 ../src/guestfs-actions.pod:3374 ../src/guestfs-actions.pod:3398 ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3444 ../src/guestfs-actions.pod:7248 ../src/guestfs-actions.pod:7274 ../src/guestfs-actions.pod:7405 ../src/guestfs-actions.pod:7431 ../src/guestfs-actions.pod:7455 ../src/guestfs-actions.pod:8549 ../src/guestfs-actions.pod:8604 ../src/guestfs-actions.pod:8750 ../src/guestfs-actions.pod:8774 ../src/guestfs-actions.pod:9641 ../src/guestfs-actions.pod:9661 ../src/guestfs-actions.pod:9694 ../src/guestfs-actions.pod:9730 ../src/guestfs-actions.pod:9749 ../src/guestfs-actions.pod:9865 ../src/guestfs-actions.pod:9884 ../src/guestfs-actions.pod:9930 ../src/guestfs-actions.pod:9949 msgid "" "Because of the message protocol, there is a transfer limit of somewhere " "between 2MB and 4MB. See L." @@ -9997,7 +9997,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:1164 ../fish/guestfish-actions.pod:5843 ../src/guestfs-actions.pod:1990 ../src/guestfs-actions.pod:9166 +#: ../fish/guestfish-actions.pod:1164 ../fish/guestfish-actions.pod:5850 ../src/guestfs-actions.pod:1990 ../src/guestfs-actions.pod:9173 msgid "C can also be a named pipe." msgstr "" @@ -11124,7 +11124,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:1727 ../fish/guestfish-actions.pod:5015 ../src/guestfs-actions.pod:2847 ../src/guestfs-actions.pod:7904 +#: ../fish/guestfish-actions.pod:1727 ../fish/guestfish-actions.pod:5022 ../src/guestfs-actions.pod:2847 ../src/guestfs-actions.pod:7911 msgid "" "These attributes are only present when the file is located on an ext2/3/4 " "filesystem. Using this call on other filesystem types will result in an " @@ -11459,7 +11459,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:1880 ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:5088 ../fish/guestfish-actions.pod:5192 ../src/guestfs-actions.pod:3026 ../src/guestfs-actions.pod:3118 ../src/guestfs-actions.pod:8031 ../src/guestfs-actions.pod:8159 +#: ../fish/guestfish-actions.pod:1880 ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:5095 ../fish/guestfish-actions.pod:5199 ../src/guestfs-actions.pod:3026 ../src/guestfs-actions.pod:3118 ../src/guestfs-actions.pod:8038 ../src/guestfs-actions.pod:8166 msgid "For more information on the architecture of libguestfs, see L." msgstr "" @@ -11995,7 +11995,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:2114 ../fish/guestfish-actions.pod:5593 ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:8761 +#: ../fish/guestfish-actions.pod:2114 ../fish/guestfish-actions.pod:5600 ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:8768 msgid "If the parameter C is zero, this returns an empty list." msgstr "" @@ -14445,7 +14445,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:3282 ../fish/guestfish-actions.pod:5428 ../src/guestfs-actions.pod:5068 ../src/guestfs-actions.pod:8501 +#: ../fish/guestfish-actions.pod:3282 ../fish/guestfish-actions.pod:5435 ../src/guestfs-actions.pod:5068 ../src/guestfs-actions.pod:8508 msgid "Returns file information for the given C." msgstr "" @@ -16260,7 +16260,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4106 ../fish/guestfish-actions.pod:4130 ../fish/guestfish-actions.pod:5832 ../src/guestfs-actions.pod:6441 ../src/guestfs-actions.pod:6490 ../src/guestfs-actions.pod:9130 +#: ../fish/guestfish-actions.pod:4106 ../fish/guestfish-actions.pod:4130 ../fish/guestfish-actions.pod:5839 ../src/guestfs-actions.pod:6441 ../src/guestfs-actions.pod:6490 ../src/guestfs-actions.pod:9137 msgid "See L for full documentation." msgstr "" @@ -16658,7 +16658,7 @@ msgid "" msgstr "" #. type: =item -#: ../fish/guestfish-actions.pod:4287 ../fish/guestfish-actions.pod:5686 ../src/guestfs-actions.pod:6815 ../src/guestfs-actions.pod:8918 +#: ../fish/guestfish-actions.pod:4287 ../fish/guestfish-actions.pod:5693 ../src/guestfs-actions.pod:6815 ../src/guestfs-actions.pod:8925 msgid "C" msgstr "" @@ -18134,34 +18134,51 @@ msgstr "" #. type: =item #: ../fish/guestfish-actions.pod:4952 ../src/guestfs-actions.pod:7818 -msgid "C>" +msgid "C" msgstr "" -#. type: textblock +#. type: =item #: ../fish/guestfish-actions.pod:4954 ../src/guestfs-actions.pod:7820 -msgid "Connect to the Unix domain socket I." +msgid "C>" msgstr "" #. type: textblock #: ../fish/guestfish-actions.pod:4956 ../src/guestfs-actions.pod:7822 msgid "" +"Use libvirt to launch the appliance. The optional I is the libvirt " +"connection URI to use (see L)." +msgstr "" + +#. type: =item +#: ../fish/guestfish-actions.pod:4959 ../src/guestfs-actions.pod:7825 +msgid "C>" +msgstr "" + +#. type: textblock +#: ../fish/guestfish-actions.pod:4961 ../src/guestfs-actions.pod:7827 +msgid "Connect to the Unix domain socket I." +msgstr "" + +#. type: textblock +#: ../fish/guestfish-actions.pod:4963 ../src/guestfs-actions.pod:7829 +msgid "" "This method lets you connect to an existing daemon or (using virtio-serial) " "to a live guest. For more information, see L." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:4962 +#: ../fish/guestfish-actions.pod:4969 msgid "set-autosync" msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:4964 +#: ../fish/guestfish-actions.pod:4971 msgid "autosync" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:4966 +#: ../fish/guestfish-actions.pod:4973 #, no-wrap msgid "" " set-autosync true|false\n" @@ -18169,7 +18186,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4968 ../src/guestfs-actions.pod:7838 +#: ../fish/guestfish-actions.pod:4975 ../src/guestfs-actions.pod:7845 msgid "" "If C is true, this enables autosync. Libguestfs will make a best " "effort attempt to make filesystems consistent and synchronized when the " @@ -18177,24 +18194,24 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4973 ../src/guestfs-actions.pod:7843 +#: ../fish/guestfish-actions.pod:4980 ../src/guestfs-actions.pod:7850 msgid "" "This is enabled by default (since libguestfs 1.5.24, previously it was " "disabled by default)." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:4976 +#: ../fish/guestfish-actions.pod:4983 msgid "set-direct" msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:4978 +#: ../fish/guestfish-actions.pod:4985 msgid "direct" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:4980 +#: ../fish/guestfish-actions.pod:4987 #, no-wrap msgid "" " set-direct true|false\n" @@ -18202,36 +18219,36 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4982 ../src/guestfs-actions.pod:7856 +#: ../fish/guestfish-actions.pod:4989 ../src/guestfs-actions.pod:7863 msgid "" "If the direct appliance mode flag is enabled, then stdin and stdout are " "passed directly through to the appliance once it is launched." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4986 +#: ../fish/guestfish-actions.pod:4993 msgid "" "One consequence of this is that log messages aren't caught by the library " "and handled by L, but go straight to stdout." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4990 ../src/guestfs-actions.pod:7864 +#: ../fish/guestfish-actions.pod:4997 ../src/guestfs-actions.pod:7871 msgid "You probably don't want to use this unless you know what you are doing." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4993 ../src/guestfs-actions.pod:7867 +#: ../fish/guestfish-actions.pod:5000 ../src/guestfs-actions.pod:7874 msgid "The default is disabled." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:4995 +#: ../fish/guestfish-actions.pod:5002 msgid "set-e2attrs" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:4997 +#: ../fish/guestfish-actions.pod:5004 #, no-wrap msgid "" " set-e2attrs file attrs [clear:true|false]\n" @@ -18239,14 +18256,14 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4999 ../src/guestfs-actions.pod:7888 +#: ../fish/guestfish-actions.pod:5006 ../src/guestfs-actions.pod:7895 msgid "" "This sets or clears the file attributes C associated with the inode " "C." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5002 +#: ../fish/guestfish-actions.pod:5009 msgid "" "C is a string of characters representing file attributes. See " "L for a list of possible attributes. Not all attributes can " @@ -18254,31 +18271,31 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5006 ../src/guestfs-actions.pod:7895 +#: ../fish/guestfish-actions.pod:5013 ../src/guestfs-actions.pod:7902 msgid "" "If optional boolean C is not present or false, then the C " "listed are set in the inode." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5009 ../src/guestfs-actions.pod:7898 +#: ../fish/guestfish-actions.pod:5016 ../src/guestfs-actions.pod:7905 msgid "If C is true, then the C listed are cleared in the inode." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5012 ../src/guestfs-actions.pod:7901 +#: ../fish/guestfish-actions.pod:5019 ../src/guestfs-actions.pod:7908 msgid "" "In both cases, other attributes not present in the C string are left " "unchanged." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:5021 +#: ../fish/guestfish-actions.pod:5028 msgid "set-e2generation" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:5023 +#: ../fish/guestfish-actions.pod:5030 #, no-wrap msgid "" " set-e2generation file generation\n" @@ -18286,22 +18303,22 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5025 ../src/guestfs-actions.pod:7943 +#: ../fish/guestfish-actions.pod:5032 ../src/guestfs-actions.pod:7950 msgid "This sets the ext2 file generation of a file." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5027 +#: ../fish/guestfish-actions.pod:5034 msgid "See L." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:5029 +#: ../fish/guestfish-actions.pod:5036 msgid "set-e2label" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:5031 +#: ../fish/guestfish-actions.pod:5038 #, no-wrap msgid "" " set-e2label device label\n" @@ -18309,33 +18326,33 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5033 ../src/guestfs-actions.pod:7965 +#: ../fish/guestfish-actions.pod:5040 ../src/guestfs-actions.pod:7972 msgid "" "This sets the ext2/3/4 filesystem label of the filesystem on C to " "C call instead." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:6282 +#: ../fish/guestfish-actions.pod:6289 msgid "zgrep" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:6284 +#: ../fish/guestfish-actions.pod:6291 #, no-wrap msgid "" " zgrep regex path\n" @@ -21082,17 +21099,17 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:6286 ../src/guestfs-actions.pod:9916 +#: ../fish/guestfish-actions.pod:6293 ../src/guestfs-actions.pod:9923 msgid "This calls the external C program and returns the matching lines." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:6292 +#: ../fish/guestfish-actions.pod:6299 msgid "zgrepi" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:6294 +#: ../fish/guestfish-actions.pod:6301 #, no-wrap msgid "" " zgrepi regex path\n" @@ -21100,7 +21117,7 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:6296 ../src/guestfs-actions.pod:9935 +#: ../fish/guestfish-actions.pod:6303 ../src/guestfs-actions.pod:9942 msgid "This calls the external C program and returns the matching lines." msgstr "" @@ -29156,12 +29173,12 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:37 ../src/guestfs-actions.pod:250 ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:308 ../src/guestfs-actions.pod:329 ../src/guestfs-actions.pod:342 ../src/guestfs-actions.pod:356 ../src/guestfs-actions.pod:476 ../src/guestfs-actions.pod:496 ../src/guestfs-actions.pod:510 ../src/guestfs-actions.pod:555 ../src/guestfs-actions.pod:583 ../src/guestfs-actions.pod:601 ../src/guestfs-actions.pod:670 ../src/guestfs-actions.pod:703 ../src/guestfs-actions.pod:717 ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:872 ../src/guestfs-actions.pod:890 ../src/guestfs-actions.pod:904 ../src/guestfs-actions.pod:918 ../src/guestfs-actions.pod:932 ../src/guestfs-actions.pod:946 ../src/guestfs-actions.pod:959 ../src/guestfs-actions.pod:996 ../src/guestfs-actions.pod:1030 ../src/guestfs-actions.pod:1052 ../src/guestfs-actions.pod:1088 ../src/guestfs-actions.pod:1101 ../src/guestfs-actions.pod:1113 ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1158 ../src/guestfs-actions.pod:1354 ../src/guestfs-actions.pod:1374 ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1482 ../src/guestfs-actions.pod:1541 ../src/guestfs-actions.pod:1587 ../src/guestfs-actions.pod:1627 ../src/guestfs-actions.pod:1680 ../src/guestfs-actions.pod:1733 ../src/guestfs-actions.pod:1791 ../src/guestfs-actions.pod:1845 ../src/guestfs-actions.pod:1864 ../src/guestfs-actions.pod:1878 ../src/guestfs-actions.pod:1906 ../src/guestfs-actions.pod:1994 ../src/guestfs-actions.pod:2025 ../src/guestfs-actions.pod:2050 ../src/guestfs-actions.pod:2116 ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:2272 ../src/guestfs-actions.pod:2299 ../src/guestfs-actions.pod:2537 ../src/guestfs-actions.pod:2559 ../src/guestfs-actions.pod:2646 ../src/guestfs-actions.pod:2757 ../src/guestfs-actions.pod:3357 ../src/guestfs-actions.pod:3501 ../src/guestfs-actions.pod:3560 ../src/guestfs-actions.pod:3595 ../src/guestfs-actions.pod:4708 ../src/guestfs-actions.pod:4723 ../src/guestfs-actions.pod:4748 ../src/guestfs-actions.pod:4966 ../src/guestfs-actions.pod:4980 ../src/guestfs-actions.pod:4993 ../src/guestfs-actions.pod:5007 ../src/guestfs-actions.pod:5022 ../src/guestfs-actions.pod:5058 ../src/guestfs-actions.pod:5130 ../src/guestfs-actions.pod:5150 ../src/guestfs-actions.pod:5167 ../src/guestfs-actions.pod:5187 ../src/guestfs-actions.pod:5207 ../src/guestfs-actions.pod:5242 ../src/guestfs-actions.pod:5261 ../src/guestfs-actions.pod:5280 ../src/guestfs-actions.pod:5297 ../src/guestfs-actions.pod:5332 ../src/guestfs-actions.pod:5344 ../src/guestfs-actions.pod:5377 ../src/guestfs-actions.pod:5393 ../src/guestfs-actions.pod:5406 ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:5438 ../src/guestfs-actions.pod:5614 ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5762 ../src/guestfs-actions.pod:5782 ../src/guestfs-actions.pod:5795 ../src/guestfs-actions.pod:5846 ../src/guestfs-actions.pod:5864 ../src/guestfs-actions.pod:5882 ../src/guestfs-actions.pod:5898 ../src/guestfs-actions.pod:5912 ../src/guestfs-actions.pod:5926 ../src/guestfs-actions.pod:5943 ../src/guestfs-actions.pod:6020 ../src/guestfs-actions.pod:6071 ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6175 ../src/guestfs-actions.pod:6206 ../src/guestfs-actions.pod:6225 ../src/guestfs-actions.pod:6244 ../src/guestfs-actions.pod:6256 ../src/guestfs-actions.pod:6273 ../src/guestfs-actions.pod:6286 ../src/guestfs-actions.pod:6301 ../src/guestfs-actions.pod:6316 ../src/guestfs-actions.pod:6348 ../src/guestfs-actions.pod:6374 ../src/guestfs-actions.pod:6443 ../src/guestfs-actions.pod:6492 ../src/guestfs-actions.pod:6507 ../src/guestfs-actions.pod:6527 ../src/guestfs-actions.pod:6541 ../src/guestfs-actions.pod:6558 ../src/guestfs-actions.pod:6607 ../src/guestfs-actions.pod:6659 ../src/guestfs-actions.pod:6697 ../src/guestfs-actions.pod:6749 ../src/guestfs-actions.pod:6831 ../src/guestfs-actions.pod:6874 ../src/guestfs-actions.pod:6902 ../src/guestfs-actions.pod:6919 ../src/guestfs-actions.pod:6937 ../src/guestfs-actions.pod:7074 ../src/guestfs-actions.pod:7131 ../src/guestfs-actions.pod:7153 ../src/guestfs-actions.pod:7171 ../src/guestfs-actions.pod:7223 ../src/guestfs-actions.pod:7289 ../src/guestfs-actions.pod:7306 ../src/guestfs-actions.pod:7319 ../src/guestfs-actions.pod:7333 ../src/guestfs-actions.pod:7622 ../src/guestfs-actions.pod:7637 ../src/guestfs-actions.pod:7658 ../src/guestfs-actions.pod:7674 ../src/guestfs-actions.pod:7686 ../src/guestfs-actions.pod:7700 ../src/guestfs-actions.pod:7712 ../src/guestfs-actions.pod:7726 ../src/guestfs-actions.pod:7742 ../src/guestfs-actions.pod:7760 ../src/guestfs-actions.pod:7779 ../src/guestfs-actions.pod:7798 ../src/guestfs-actions.pod:7828 ../src/guestfs-actions.pod:7846 ../src/guestfs-actions.pod:7869 ../src/guestfs-actions.pod:7908 ../src/guestfs-actions.pod:7947 ../src/guestfs-actions.pod:7972 ../src/guestfs-actions.pod:7991 ../src/guestfs-actions.pod:8013 ../src/guestfs-actions.pod:8034 ../src/guestfs-actions.pod:8053 ../src/guestfs-actions.pod:8070 ../src/guestfs-actions.pod:8091 ../src/guestfs-actions.pod:8119 ../src/guestfs-actions.pod:8143 ../src/guestfs-actions.pod:8162 ../src/guestfs-actions.pod:8178 ../src/guestfs-actions.pod:8202 ../src/guestfs-actions.pod:8221 ../src/guestfs-actions.pod:8236 ../src/guestfs-actions.pod:8255 ../src/guestfs-actions.pod:8299 ../src/guestfs-actions.pod:8326 ../src/guestfs-actions.pod:8356 ../src/guestfs-actions.pod:8481 ../src/guestfs-actions.pod:8491 ../src/guestfs-actions.pod:8612 ../src/guestfs-actions.pod:8624 ../src/guestfs-actions.pod:8637 ../src/guestfs-actions.pod:8650 ../src/guestfs-actions.pod:8672 ../src/guestfs-actions.pod:8685 ../src/guestfs-actions.pod:8698 ../src/guestfs-actions.pod:8711 ../src/guestfs-actions.pod:8726 ../src/guestfs-actions.pod:8785 ../src/guestfs-actions.pod:8802 ../src/guestfs-actions.pod:8818 ../src/guestfs-actions.pod:8834 ../src/guestfs-actions.pod:8851 ../src/guestfs-actions.pod:8864 ../src/guestfs-actions.pod:8884 ../src/guestfs-actions.pod:8984 ../src/guestfs-actions.pod:9042 ../src/guestfs-actions.pod:9056 ../src/guestfs-actions.pod:9097 ../src/guestfs-actions.pod:9110 ../src/guestfs-actions.pod:9132 ../src/guestfs-actions.pod:9170 ../src/guestfs-actions.pod:9204 ../src/guestfs-actions.pod:9240 ../src/guestfs-actions.pod:9356 ../src/guestfs-actions.pod:9371 ../src/guestfs-actions.pod:9385 ../src/guestfs-actions.pod:9459 ../src/guestfs-actions.pod:9472 ../src/guestfs-actions.pod:9517 ../src/guestfs-actions.pod:9557 ../src/guestfs-actions.pod:9615 ../src/guestfs-actions.pod:9632 ../src/guestfs-actions.pod:9652 ../src/guestfs-actions.pod:9685 ../src/guestfs-actions.pod:9766 ../src/guestfs-actions.pod:9789 ../src/guestfs-actions.pod:9814 ../src/guestfs-actions.pod:9840 +#: ../src/guestfs-actions.pod:37 ../src/guestfs-actions.pod:250 ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:308 ../src/guestfs-actions.pod:329 ../src/guestfs-actions.pod:342 ../src/guestfs-actions.pod:356 ../src/guestfs-actions.pod:476 ../src/guestfs-actions.pod:496 ../src/guestfs-actions.pod:510 ../src/guestfs-actions.pod:555 ../src/guestfs-actions.pod:583 ../src/guestfs-actions.pod:601 ../src/guestfs-actions.pod:670 ../src/guestfs-actions.pod:703 ../src/guestfs-actions.pod:717 ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:872 ../src/guestfs-actions.pod:890 ../src/guestfs-actions.pod:904 ../src/guestfs-actions.pod:918 ../src/guestfs-actions.pod:932 ../src/guestfs-actions.pod:946 ../src/guestfs-actions.pod:959 ../src/guestfs-actions.pod:996 ../src/guestfs-actions.pod:1030 ../src/guestfs-actions.pod:1052 ../src/guestfs-actions.pod:1088 ../src/guestfs-actions.pod:1101 ../src/guestfs-actions.pod:1113 ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1158 ../src/guestfs-actions.pod:1354 ../src/guestfs-actions.pod:1374 ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1482 ../src/guestfs-actions.pod:1541 ../src/guestfs-actions.pod:1587 ../src/guestfs-actions.pod:1627 ../src/guestfs-actions.pod:1680 ../src/guestfs-actions.pod:1733 ../src/guestfs-actions.pod:1791 ../src/guestfs-actions.pod:1845 ../src/guestfs-actions.pod:1864 ../src/guestfs-actions.pod:1878 ../src/guestfs-actions.pod:1906 ../src/guestfs-actions.pod:1994 ../src/guestfs-actions.pod:2025 ../src/guestfs-actions.pod:2050 ../src/guestfs-actions.pod:2116 ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:2272 ../src/guestfs-actions.pod:2299 ../src/guestfs-actions.pod:2537 ../src/guestfs-actions.pod:2559 ../src/guestfs-actions.pod:2646 ../src/guestfs-actions.pod:2757 ../src/guestfs-actions.pod:3357 ../src/guestfs-actions.pod:3501 ../src/guestfs-actions.pod:3560 ../src/guestfs-actions.pod:3595 ../src/guestfs-actions.pod:4708 ../src/guestfs-actions.pod:4723 ../src/guestfs-actions.pod:4748 ../src/guestfs-actions.pod:4966 ../src/guestfs-actions.pod:4980 ../src/guestfs-actions.pod:4993 ../src/guestfs-actions.pod:5007 ../src/guestfs-actions.pod:5022 ../src/guestfs-actions.pod:5058 ../src/guestfs-actions.pod:5130 ../src/guestfs-actions.pod:5150 ../src/guestfs-actions.pod:5167 ../src/guestfs-actions.pod:5187 ../src/guestfs-actions.pod:5207 ../src/guestfs-actions.pod:5242 ../src/guestfs-actions.pod:5261 ../src/guestfs-actions.pod:5280 ../src/guestfs-actions.pod:5297 ../src/guestfs-actions.pod:5332 ../src/guestfs-actions.pod:5344 ../src/guestfs-actions.pod:5377 ../src/guestfs-actions.pod:5393 ../src/guestfs-actions.pod:5406 ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:5438 ../src/guestfs-actions.pod:5614 ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5762 ../src/guestfs-actions.pod:5782 ../src/guestfs-actions.pod:5795 ../src/guestfs-actions.pod:5846 ../src/guestfs-actions.pod:5864 ../src/guestfs-actions.pod:5882 ../src/guestfs-actions.pod:5898 ../src/guestfs-actions.pod:5912 ../src/guestfs-actions.pod:5926 ../src/guestfs-actions.pod:5943 ../src/guestfs-actions.pod:6020 ../src/guestfs-actions.pod:6071 ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6175 ../src/guestfs-actions.pod:6206 ../src/guestfs-actions.pod:6225 ../src/guestfs-actions.pod:6244 ../src/guestfs-actions.pod:6256 ../src/guestfs-actions.pod:6273 ../src/guestfs-actions.pod:6286 ../src/guestfs-actions.pod:6301 ../src/guestfs-actions.pod:6316 ../src/guestfs-actions.pod:6348 ../src/guestfs-actions.pod:6374 ../src/guestfs-actions.pod:6443 ../src/guestfs-actions.pod:6492 ../src/guestfs-actions.pod:6507 ../src/guestfs-actions.pod:6527 ../src/guestfs-actions.pod:6541 ../src/guestfs-actions.pod:6558 ../src/guestfs-actions.pod:6607 ../src/guestfs-actions.pod:6659 ../src/guestfs-actions.pod:6697 ../src/guestfs-actions.pod:6749 ../src/guestfs-actions.pod:6831 ../src/guestfs-actions.pod:6874 ../src/guestfs-actions.pod:6902 ../src/guestfs-actions.pod:6919 ../src/guestfs-actions.pod:6937 ../src/guestfs-actions.pod:7074 ../src/guestfs-actions.pod:7131 ../src/guestfs-actions.pod:7153 ../src/guestfs-actions.pod:7171 ../src/guestfs-actions.pod:7223 ../src/guestfs-actions.pod:7289 ../src/guestfs-actions.pod:7306 ../src/guestfs-actions.pod:7319 ../src/guestfs-actions.pod:7333 ../src/guestfs-actions.pod:7622 ../src/guestfs-actions.pod:7637 ../src/guestfs-actions.pod:7658 ../src/guestfs-actions.pod:7674 ../src/guestfs-actions.pod:7686 ../src/guestfs-actions.pod:7700 ../src/guestfs-actions.pod:7712 ../src/guestfs-actions.pod:7726 ../src/guestfs-actions.pod:7742 ../src/guestfs-actions.pod:7760 ../src/guestfs-actions.pod:7779 ../src/guestfs-actions.pod:7798 ../src/guestfs-actions.pod:7835 ../src/guestfs-actions.pod:7853 ../src/guestfs-actions.pod:7876 ../src/guestfs-actions.pod:7915 ../src/guestfs-actions.pod:7954 ../src/guestfs-actions.pod:7979 ../src/guestfs-actions.pod:7998 ../src/guestfs-actions.pod:8020 ../src/guestfs-actions.pod:8041 ../src/guestfs-actions.pod:8060 ../src/guestfs-actions.pod:8077 ../src/guestfs-actions.pod:8098 ../src/guestfs-actions.pod:8126 ../src/guestfs-actions.pod:8150 ../src/guestfs-actions.pod:8169 ../src/guestfs-actions.pod:8185 ../src/guestfs-actions.pod:8209 ../src/guestfs-actions.pod:8228 ../src/guestfs-actions.pod:8243 ../src/guestfs-actions.pod:8262 ../src/guestfs-actions.pod:8306 ../src/guestfs-actions.pod:8333 ../src/guestfs-actions.pod:8363 ../src/guestfs-actions.pod:8488 ../src/guestfs-actions.pod:8498 ../src/guestfs-actions.pod:8619 ../src/guestfs-actions.pod:8631 ../src/guestfs-actions.pod:8644 ../src/guestfs-actions.pod:8657 ../src/guestfs-actions.pod:8679 ../src/guestfs-actions.pod:8692 ../src/guestfs-actions.pod:8705 ../src/guestfs-actions.pod:8718 ../src/guestfs-actions.pod:8733 ../src/guestfs-actions.pod:8792 ../src/guestfs-actions.pod:8809 ../src/guestfs-actions.pod:8825 ../src/guestfs-actions.pod:8841 ../src/guestfs-actions.pod:8858 ../src/guestfs-actions.pod:8871 ../src/guestfs-actions.pod:8891 ../src/guestfs-actions.pod:8991 ../src/guestfs-actions.pod:9049 ../src/guestfs-actions.pod:9063 ../src/guestfs-actions.pod:9104 ../src/guestfs-actions.pod:9117 ../src/guestfs-actions.pod:9139 ../src/guestfs-actions.pod:9177 ../src/guestfs-actions.pod:9211 ../src/guestfs-actions.pod:9247 ../src/guestfs-actions.pod:9363 ../src/guestfs-actions.pod:9378 ../src/guestfs-actions.pod:9392 ../src/guestfs-actions.pod:9466 ../src/guestfs-actions.pod:9479 ../src/guestfs-actions.pod:9524 ../src/guestfs-actions.pod:9564 ../src/guestfs-actions.pod:9622 ../src/guestfs-actions.pod:9639 ../src/guestfs-actions.pod:9659 ../src/guestfs-actions.pod:9692 ../src/guestfs-actions.pod:9773 ../src/guestfs-actions.pod:9796 ../src/guestfs-actions.pod:9821 ../src/guestfs-actions.pod:9847 msgid "This function returns 0 on success or -1 on error." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:180 ../src/guestfs-actions.pod:1589 ../src/guestfs-actions.pod:2820 ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3182 ../src/guestfs-actions.pod:4710 ../src/guestfs-actions.pod:4730 ../src/guestfs-actions.pod:6350 ../src/guestfs-actions.pod:7848 ../src/guestfs-actions.pod:8072 ../src/guestfs-actions.pod:8223 ../src/guestfs-actions.pod:8728 ../src/guestfs-actions.pod:8853 ../src/guestfs-actions.pod:9559 +#: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:180 ../src/guestfs-actions.pod:1589 ../src/guestfs-actions.pod:2820 ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3182 ../src/guestfs-actions.pod:4710 ../src/guestfs-actions.pod:4730 ../src/guestfs-actions.pod:6350 ../src/guestfs-actions.pod:7855 ../src/guestfs-actions.pod:8079 ../src/guestfs-actions.pod:8230 ../src/guestfs-actions.pod:8735 ../src/guestfs-actions.pod:8860 ../src/guestfs-actions.pod:9566 msgid "(Added in 0.3)" msgstr "" @@ -29182,7 +29199,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:190 ../src/guestfs-actions.pod:970 ../src/guestfs-actions.pod:1041 ../src/guestfs-actions.pod:1469 ../src/guestfs-actions.pod:1521 ../src/guestfs-actions.pod:1599 ../src/guestfs-actions.pod:1668 ../src/guestfs-actions.pod:1721 ../src/guestfs-actions.pod:1774 ../src/guestfs-actions.pod:2086 ../src/guestfs-actions.pod:2730 ../src/guestfs-actions.pod:3864 ../src/guestfs-actions.pod:5549 ../src/guestfs-actions.pod:5969 ../src/guestfs-actions.pod:6082 ../src/guestfs-actions.pod:6360 ../src/guestfs-actions.pod:6409 ../src/guestfs-actions.pod:6671 ../src/guestfs-actions.pod:6732 ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7881 ../src/guestfs-actions.pod:8895 ../src/guestfs-actions.pod:9120 +#: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:190 ../src/guestfs-actions.pod:970 ../src/guestfs-actions.pod:1041 ../src/guestfs-actions.pod:1469 ../src/guestfs-actions.pod:1521 ../src/guestfs-actions.pod:1599 ../src/guestfs-actions.pod:1668 ../src/guestfs-actions.pod:1721 ../src/guestfs-actions.pod:1774 ../src/guestfs-actions.pod:2086 ../src/guestfs-actions.pod:2730 ../src/guestfs-actions.pod:3864 ../src/guestfs-actions.pod:5549 ../src/guestfs-actions.pod:5969 ../src/guestfs-actions.pod:6082 ../src/guestfs-actions.pod:6360 ../src/guestfs-actions.pod:6409 ../src/guestfs-actions.pod:6671 ../src/guestfs-actions.pod:6732 ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7888 ../src/guestfs-actions.pod:8902 ../src/guestfs-actions.pod:9127 msgid "" "You may supply a list of optional arguments to this call. Use zero or more " "of the following pairs of parameters, and terminate the list with C<-1> on " @@ -29219,7 +29236,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:144 ../src/guestfs-actions.pod:399 ../src/guestfs-actions.pod:569 ../src/guestfs-actions.pod:790 ../src/guestfs-actions.pod:821 ../src/guestfs-actions.pod:839 ../src/guestfs-actions.pod:858 ../src/guestfs-actions.pod:1924 ../src/guestfs-actions.pod:2070 ../src/guestfs-actions.pod:2493 ../src/guestfs-actions.pod:2719 ../src/guestfs-actions.pod:2968 ../src/guestfs-actions.pod:3029 ../src/guestfs-actions.pod:3080 ../src/guestfs-actions.pod:3132 ../src/guestfs-actions.pod:3146 ../src/guestfs-actions.pod:3169 ../src/guestfs-actions.pod:3488 ../src/guestfs-actions.pod:3982 ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:5537 ../src/guestfs-actions.pod:6623 ../src/guestfs-actions.pod:6644 ../src/guestfs-actions.pod:6971 ../src/guestfs-actions.pod:7209 ../src/guestfs-actions.pod:7403 ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:9083 ../src/guestfs-actions.pod:9570 ../src/guestfs-actions.pod:9583 ../src/guestfs-actions.pod:9596 +#: ../src/guestfs-actions.pod:144 ../src/guestfs-actions.pod:399 ../src/guestfs-actions.pod:569 ../src/guestfs-actions.pod:790 ../src/guestfs-actions.pod:821 ../src/guestfs-actions.pod:839 ../src/guestfs-actions.pod:858 ../src/guestfs-actions.pod:1924 ../src/guestfs-actions.pod:2070 ../src/guestfs-actions.pod:2493 ../src/guestfs-actions.pod:2719 ../src/guestfs-actions.pod:2968 ../src/guestfs-actions.pod:3029 ../src/guestfs-actions.pod:3080 ../src/guestfs-actions.pod:3132 ../src/guestfs-actions.pod:3146 ../src/guestfs-actions.pod:3169 ../src/guestfs-actions.pod:3488 ../src/guestfs-actions.pod:3982 ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:5537 ../src/guestfs-actions.pod:6623 ../src/guestfs-actions.pod:6644 ../src/guestfs-actions.pod:6971 ../src/guestfs-actions.pod:7209 ../src/guestfs-actions.pod:7403 ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:9090 ../src/guestfs-actions.pod:9577 ../src/guestfs-actions.pod:9590 ../src/guestfs-actions.pod:9603 msgid "On error this function returns -1." msgstr "" @@ -29250,7 +29267,7 @@ msgid "This is the \"va_list variant\" of L." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:157 ../src/guestfs-actions.pod:168 ../src/guestfs-actions.pod:263 ../src/guestfs-actions.pod:274 ../src/guestfs-actions.pod:1009 ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1065 ../src/guestfs-actions.pod:1076 ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1510 ../src/guestfs-actions.pod:1556 ../src/guestfs-actions.pod:1569 ../src/guestfs-actions.pod:1646 ../src/guestfs-actions.pod:1658 ../src/guestfs-actions.pod:1699 ../src/guestfs-actions.pod:1711 ../src/guestfs-actions.pod:1752 ../src/guestfs-actions.pod:1764 ../src/guestfs-actions.pod:1810 ../src/guestfs-actions.pod:1822 ../src/guestfs-actions.pod:2129 ../src/guestfs-actions.pod:2140 ../src/guestfs-actions.pod:2770 ../src/guestfs-actions.pod:2781 ../src/guestfs-actions.pod:3948 ../src/guestfs-actions.pod:3960 ../src/guestfs-actions.pod:5628 ../src/guestfs-actions.pod:5640 ../src/guestfs-actions.pod:6034 ../src/guestfs-actions.pod:6046 ../src/guestfs-actions.pod:6117 ../src/guestfs-actions.pod:6128 ../src/guestfs-actions.pod:6388 ../src/guestfs-actions.pod:6400 ../src/guestfs-actions.pod:6456 ../src/guestfs-actions.pod:6467 ../src/guestfs-actions.pod:6711 ../src/guestfs-actions.pod:6723 ../src/guestfs-actions.pod:6762 ../src/guestfs-actions.pod:6773 ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:6855 ../src/guestfs-actions.pod:7922 ../src/guestfs-actions.pod:7934 ../src/guestfs-actions.pod:8997 ../src/guestfs-actions.pod:9008 ../src/guestfs-actions.pod:9144 ../src/guestfs-actions.pod:9154 +#: ../src/guestfs-actions.pod:157 ../src/guestfs-actions.pod:168 ../src/guestfs-actions.pod:263 ../src/guestfs-actions.pod:274 ../src/guestfs-actions.pod:1009 ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1065 ../src/guestfs-actions.pod:1076 ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1510 ../src/guestfs-actions.pod:1556 ../src/guestfs-actions.pod:1569 ../src/guestfs-actions.pod:1646 ../src/guestfs-actions.pod:1658 ../src/guestfs-actions.pod:1699 ../src/guestfs-actions.pod:1711 ../src/guestfs-actions.pod:1752 ../src/guestfs-actions.pod:1764 ../src/guestfs-actions.pod:1810 ../src/guestfs-actions.pod:1822 ../src/guestfs-actions.pod:2129 ../src/guestfs-actions.pod:2140 ../src/guestfs-actions.pod:2770 ../src/guestfs-actions.pod:2781 ../src/guestfs-actions.pod:3948 ../src/guestfs-actions.pod:3960 ../src/guestfs-actions.pod:5628 ../src/guestfs-actions.pod:5640 ../src/guestfs-actions.pod:6034 ../src/guestfs-actions.pod:6046 ../src/guestfs-actions.pod:6117 ../src/guestfs-actions.pod:6128 ../src/guestfs-actions.pod:6388 ../src/guestfs-actions.pod:6400 ../src/guestfs-actions.pod:6456 ../src/guestfs-actions.pod:6467 ../src/guestfs-actions.pod:6711 ../src/guestfs-actions.pod:6723 ../src/guestfs-actions.pod:6762 ../src/guestfs-actions.pod:6773 ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:6855 ../src/guestfs-actions.pod:7929 ../src/guestfs-actions.pod:7941 ../src/guestfs-actions.pod:9004 ../src/guestfs-actions.pod:9015 ../src/guestfs-actions.pod:9151 ../src/guestfs-actions.pod:9161 msgid "See L." msgstr "" @@ -29578,7 +29595,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:412 ../src/guestfs-actions.pod:1192 ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:1253 ../src/guestfs-actions.pod:1313 ../src/guestfs-actions.pod:1329 ../src/guestfs-actions.pod:1432 ../src/guestfs-actions.pod:1939 ../src/guestfs-actions.pod:1956 ../src/guestfs-actions.pod:1975 ../src/guestfs-actions.pod:2176 ../src/guestfs-actions.pod:2364 ../src/guestfs-actions.pod:2476 ../src/guestfs-actions.pod:2662 ../src/guestfs-actions.pod:2679 ../src/guestfs-actions.pod:2806 ../src/guestfs-actions.pod:2947 ../src/guestfs-actions.pod:2988 ../src/guestfs-actions.pod:3009 ../src/guestfs-actions.pod:3194 ../src/guestfs-actions.pod:3412 ../src/guestfs-actions.pod:3614 ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:3832 ../src/guestfs-actions.pod:3851 ../src/guestfs-actions.pod:4066 ../src/guestfs-actions.pod:4094 ../src/guestfs-actions.pod:4115 ../src/guestfs-actions.pod:4149 ../src/guestfs-actions.pod:4220 ../src/guestfs-actions.pod:4240 ../src/guestfs-actions.pod:4260 ../src/guestfs-actions.pod:4936 ../src/guestfs-actions.pod:4952 ../src/guestfs-actions.pod:5316 ../src/guestfs-actions.pod:5483 ../src/guestfs-actions.pod:5824 ../src/guestfs-actions.pod:6989 ../src/guestfs-actions.pod:7190 ../src/guestfs-actions.pod:7378 ../src/guestfs-actions.pod:7556 ../src/guestfs-actions.pod:7605 ../src/guestfs-actions.pod:8374 ../src/guestfs-actions.pod:8390 ../src/guestfs-actions.pod:8414 ../src/guestfs-actions.pod:8438 ../src/guestfs-actions.pod:9299 ../src/guestfs-actions.pod:9318 ../src/guestfs-actions.pod:9336 ../src/guestfs-actions.pod:9529 ../src/guestfs-actions.pod:9904 +#: ../src/guestfs-actions.pod:412 ../src/guestfs-actions.pod:1192 ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:1253 ../src/guestfs-actions.pod:1313 ../src/guestfs-actions.pod:1329 ../src/guestfs-actions.pod:1432 ../src/guestfs-actions.pod:1939 ../src/guestfs-actions.pod:1956 ../src/guestfs-actions.pod:1975 ../src/guestfs-actions.pod:2176 ../src/guestfs-actions.pod:2364 ../src/guestfs-actions.pod:2476 ../src/guestfs-actions.pod:2662 ../src/guestfs-actions.pod:2679 ../src/guestfs-actions.pod:2806 ../src/guestfs-actions.pod:2947 ../src/guestfs-actions.pod:2988 ../src/guestfs-actions.pod:3009 ../src/guestfs-actions.pod:3194 ../src/guestfs-actions.pod:3412 ../src/guestfs-actions.pod:3614 ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:3832 ../src/guestfs-actions.pod:3851 ../src/guestfs-actions.pod:4066 ../src/guestfs-actions.pod:4094 ../src/guestfs-actions.pod:4115 ../src/guestfs-actions.pod:4149 ../src/guestfs-actions.pod:4220 ../src/guestfs-actions.pod:4240 ../src/guestfs-actions.pod:4260 ../src/guestfs-actions.pod:4936 ../src/guestfs-actions.pod:4952 ../src/guestfs-actions.pod:5316 ../src/guestfs-actions.pod:5483 ../src/guestfs-actions.pod:5824 ../src/guestfs-actions.pod:6989 ../src/guestfs-actions.pod:7190 ../src/guestfs-actions.pod:7378 ../src/guestfs-actions.pod:7556 ../src/guestfs-actions.pod:7605 ../src/guestfs-actions.pod:8381 ../src/guestfs-actions.pod:8397 ../src/guestfs-actions.pod:8421 ../src/guestfs-actions.pod:8445 ../src/guestfs-actions.pod:9306 ../src/guestfs-actions.pod:9325 ../src/guestfs-actions.pod:9343 ../src/guestfs-actions.pod:9536 ../src/guestfs-actions.pod:9911 msgid "" "This function returns a string, or NULL on error. I." @@ -29678,7 +29695,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:539 ../src/guestfs-actions.pod:687 ../src/guestfs-actions.pod:1451 ../src/guestfs-actions.pod:2191 ../src/guestfs-actions.pod:2210 ../src/guestfs-actions.pod:2313 ../src/guestfs-actions.pod:2332 ../src/guestfs-actions.pod:2601 ../src/guestfs-actions.pod:3270 ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:3305 ../src/guestfs-actions.pod:3370 ../src/guestfs-actions.pod:3394 ../src/guestfs-actions.pod:3465 ../src/guestfs-actions.pod:3514 ../src/guestfs-actions.pod:3793 ../src/guestfs-actions.pod:4168 ../src/guestfs-actions.pod:4456 ../src/guestfs-actions.pod:4806 ../src/guestfs-actions.pod:4823 ../src/guestfs-actions.pod:4843 ../src/guestfs-actions.pod:4898 ../src/guestfs-actions.pod:4918 ../src/guestfs-actions.pod:5039 ../src/guestfs-actions.pod:5455 ../src/guestfs-actions.pod:6591 ../src/guestfs-actions.pod:7350 ../src/guestfs-actions.pod:7476 ../src/guestfs-actions.pod:7590 ../src/guestfs-actions.pod:8454 ../src/guestfs-actions.pod:8538 ../src/guestfs-actions.pod:8593 ../src/guestfs-actions.pod:8739 ../src/guestfs-actions.pod:8763 ../src/guestfs-actions.pod:9403 ../src/guestfs-actions.pod:9442 ../src/guestfs-actions.pod:9489 ../src/guestfs-actions.pod:9719 ../src/guestfs-actions.pod:9738 ../src/guestfs-actions.pod:9854 ../src/guestfs-actions.pod:9873 ../src/guestfs-actions.pod:9919 ../src/guestfs-actions.pod:9938 +#: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:539 ../src/guestfs-actions.pod:687 ../src/guestfs-actions.pod:1451 ../src/guestfs-actions.pod:2191 ../src/guestfs-actions.pod:2210 ../src/guestfs-actions.pod:2313 ../src/guestfs-actions.pod:2332 ../src/guestfs-actions.pod:2601 ../src/guestfs-actions.pod:3270 ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:3305 ../src/guestfs-actions.pod:3370 ../src/guestfs-actions.pod:3394 ../src/guestfs-actions.pod:3465 ../src/guestfs-actions.pod:3514 ../src/guestfs-actions.pod:3793 ../src/guestfs-actions.pod:4168 ../src/guestfs-actions.pod:4456 ../src/guestfs-actions.pod:4806 ../src/guestfs-actions.pod:4823 ../src/guestfs-actions.pod:4843 ../src/guestfs-actions.pod:4898 ../src/guestfs-actions.pod:4918 ../src/guestfs-actions.pod:5039 ../src/guestfs-actions.pod:5455 ../src/guestfs-actions.pod:6591 ../src/guestfs-actions.pod:7350 ../src/guestfs-actions.pod:7476 ../src/guestfs-actions.pod:7590 ../src/guestfs-actions.pod:8461 ../src/guestfs-actions.pod:8545 ../src/guestfs-actions.pod:8600 ../src/guestfs-actions.pod:8746 ../src/guestfs-actions.pod:8770 ../src/guestfs-actions.pod:9410 ../src/guestfs-actions.pod:9449 ../src/guestfs-actions.pod:9496 ../src/guestfs-actions.pod:9726 ../src/guestfs-actions.pod:9745 ../src/guestfs-actions.pod:9861 ../src/guestfs-actions.pod:9880 ../src/guestfs-actions.pod:9926 ../src/guestfs-actions.pod:9945 msgid "" "This function returns a NULL-terminated array of strings (like " "L), or NULL if there was an error. I, where " @@ -30479,7 +30496,7 @@ msgid "See also C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:9321 +#: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:9328 msgid "(Added in 1.0.75)" msgstr "" @@ -30508,7 +30525,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:1259 ../src/guestfs-actions.pod:4827 ../src/guestfs-actions.pod:4922 ../src/guestfs-actions.pod:4939 ../src/guestfs-actions.pod:5043 ../src/guestfs-actions.pod:5459 ../src/guestfs-actions.pod:5473 ../src/guestfs-actions.pod:7354 ../src/guestfs-actions.pod:7368 ../src/guestfs-actions.pod:9493 ../src/guestfs-actions.pod:9507 +#: ../src/guestfs-actions.pod:1259 ../src/guestfs-actions.pod:4827 ../src/guestfs-actions.pod:4922 ../src/guestfs-actions.pod:4939 ../src/guestfs-actions.pod:5043 ../src/guestfs-actions.pod:5459 ../src/guestfs-actions.pod:5473 ../src/guestfs-actions.pod:7354 ../src/guestfs-actions.pod:7368 ../src/guestfs-actions.pod:9500 ../src/guestfs-actions.pod:9514 msgid "(Added in 0.4)" msgstr "" @@ -30539,7 +30556,7 @@ msgid "To get the checksums for many files, use C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:1316 ../src/guestfs-actions.pod:2001 ../src/guestfs-actions.pod:3148 ../src/guestfs-actions.pod:4504 ../src/guestfs-actions.pod:4565 ../src/guestfs-actions.pod:4592 ../src/guestfs-actions.pod:9177 +#: ../src/guestfs-actions.pod:1316 ../src/guestfs-actions.pod:2001 ../src/guestfs-actions.pod:3148 ../src/guestfs-actions.pod:4504 ../src/guestfs-actions.pod:4565 ../src/guestfs-actions.pod:4592 ../src/guestfs-actions.pod:9184 msgid "(Added in 1.0.2)" msgstr "" @@ -30568,7 +30585,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:1332 ../src/guestfs-actions.pod:6785 ../src/guestfs-actions.pod:6921 ../src/guestfs-actions.pod:6955 ../src/guestfs-actions.pod:6973 ../src/guestfs-actions.pod:7155 ../src/guestfs-actions.pod:9044 ../src/guestfs-actions.pod:9058 ../src/guestfs-actions.pod:9519 +#: ../src/guestfs-actions.pod:1332 ../src/guestfs-actions.pod:6785 ../src/guestfs-actions.pod:6921 ../src/guestfs-actions.pod:6955 ../src/guestfs-actions.pod:6973 ../src/guestfs-actions.pod:7155 ../src/guestfs-actions.pod:9051 ../src/guestfs-actions.pod:9065 ../src/guestfs-actions.pod:9526 msgid "(Added in 1.3.2)" msgstr "" @@ -30718,7 +30735,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:1484 ../src/guestfs-actions.pod:1543 ../src/guestfs-actions.pod:3134 ../src/guestfs-actions.pod:8180 +#: ../src/guestfs-actions.pod:1484 ../src/guestfs-actions.pod:1543 ../src/guestfs-actions.pod:3134 ../src/guestfs-actions.pod:8187 msgid "(Added in 1.13.15)" msgstr "" @@ -30895,7 +30912,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:1629 ../src/guestfs-actions.pod:1682 ../src/guestfs-actions.pod:1735 ../src/guestfs-actions.pod:1793 ../src/guestfs-actions.pod:1847 ../src/guestfs-actions.pod:1996 ../src/guestfs-actions.pod:2027 ../src/guestfs-actions.pod:2072 ../src/guestfs-actions.pod:2539 ../src/guestfs-actions.pod:2561 ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:9172 ../src/guestfs-actions.pod:9206 ../src/guestfs-actions.pod:9768 ../src/guestfs-actions.pod:9791 ../src/guestfs-actions.pod:9816 +#: ../src/guestfs-actions.pod:1629 ../src/guestfs-actions.pod:1682 ../src/guestfs-actions.pod:1735 ../src/guestfs-actions.pod:1793 ../src/guestfs-actions.pod:1847 ../src/guestfs-actions.pod:1996 ../src/guestfs-actions.pod:2027 ../src/guestfs-actions.pod:2072 ../src/guestfs-actions.pod:2539 ../src/guestfs-actions.pod:2561 ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:9179 ../src/guestfs-actions.pod:9213 ../src/guestfs-actions.pod:9775 ../src/guestfs-actions.pod:9798 ../src/guestfs-actions.pod:9823 msgid "" "This long-running command can generate progress notification messages so " "that the caller can display a progress bar or indicator. To receive these " @@ -31207,7 +31224,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:1852 ../src/guestfs-actions.pod:5486 ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:9407 ../src/guestfs-actions.pod:9446 ../src/guestfs-actions.pod:9532 +#: ../src/guestfs-actions.pod:1852 ../src/guestfs-actions.pod:5486 ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:9414 ../src/guestfs-actions.pod:9453 ../src/guestfs-actions.pod:9539 msgid "(Added in 1.0.87)" msgstr "" @@ -31322,7 +31339,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:1942 ../src/guestfs-actions.pod:1959 ../src/guestfs-actions.pod:2077 ../src/guestfs-actions.pod:3377 ../src/guestfs-actions.pod:3401 ../src/guestfs-actions.pod:3469 ../src/guestfs-actions.pod:5827 ../src/guestfs-actions.pod:6509 ../src/guestfs-actions.pod:8746 ../src/guestfs-actions.pod:8770 ../src/guestfs-actions.pod:9572 ../src/guestfs-actions.pod:9585 ../src/guestfs-actions.pod:9598 +#: ../src/guestfs-actions.pod:1942 ../src/guestfs-actions.pod:1959 ../src/guestfs-actions.pod:2077 ../src/guestfs-actions.pod:3377 ../src/guestfs-actions.pod:3401 ../src/guestfs-actions.pod:3469 ../src/guestfs-actions.pod:5827 ../src/guestfs-actions.pod:6509 ../src/guestfs-actions.pod:8753 ../src/guestfs-actions.pod:8777 ../src/guestfs-actions.pod:9579 ../src/guestfs-actions.pod:9592 ../src/guestfs-actions.pod:9605 msgid "(Added in 1.0.54)" msgstr "" @@ -31415,7 +31432,7 @@ msgid "See also C, C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2032 ../src/guestfs-actions.pod:9211 +#: ../src/guestfs-actions.pod:2032 ../src/guestfs-actions.pod:9218 msgid "(Added in 1.5.17)" msgstr "" @@ -31569,7 +31586,7 @@ msgid "See also C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3159 ../src/guestfs-actions.pod:8204 +#: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3159 ../src/guestfs-actions.pod:8211 msgid "(Added in 1.0.69)" msgstr "" @@ -31590,7 +31607,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2198 ../src/guestfs-actions.pod:2217 ../src/guestfs-actions.pod:2274 ../src/guestfs-actions.pod:2320 ../src/guestfs-actions.pod:2339 ../src/guestfs-actions.pod:3293 ../src/guestfs-actions.pod:3312 ../src/guestfs-actions.pod:3490 ../src/guestfs-actions.pod:3503 ../src/guestfs-actions.pod:3518 ../src/guestfs-actions.pod:3562 ../src/guestfs-actions.pod:3584 ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:4968 ../src/guestfs-actions.pod:4982 ../src/guestfs-actions.pod:4995 ../src/guestfs-actions.pod:5009 ../src/guestfs-actions.pod:6303 ../src/guestfs-actions.pod:7559 ../src/guestfs-actions.pod:7608 ../src/guestfs-actions.pod:8614 ../src/guestfs-actions.pod:8626 ../src/guestfs-actions.pod:8639 ../src/guestfs-actions.pod:8652 ../src/guestfs-actions.pod:8674 ../src/guestfs-actions.pod:8687 ../src/guestfs-actions.pod:8700 ../src/guestfs-actions.pod:8713 ../src/guestfs-actions.pod:9726 ../src/guestfs-actions.pod:9745 ../src/guestfs-actions.pod:9861 ../src/guestfs-actions.pod:9880 ../src/guestfs-actions.pod:9926 ../src/guestfs-actions.pod:9945 +#: ../src/guestfs-actions.pod:2198 ../src/guestfs-actions.pod:2217 ../src/guestfs-actions.pod:2274 ../src/guestfs-actions.pod:2320 ../src/guestfs-actions.pod:2339 ../src/guestfs-actions.pod:3293 ../src/guestfs-actions.pod:3312 ../src/guestfs-actions.pod:3490 ../src/guestfs-actions.pod:3503 ../src/guestfs-actions.pod:3518 ../src/guestfs-actions.pod:3562 ../src/guestfs-actions.pod:3584 ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:4968 ../src/guestfs-actions.pod:4982 ../src/guestfs-actions.pod:4995 ../src/guestfs-actions.pod:5009 ../src/guestfs-actions.pod:6303 ../src/guestfs-actions.pod:7559 ../src/guestfs-actions.pod:7608 ../src/guestfs-actions.pod:8621 ../src/guestfs-actions.pod:8633 ../src/guestfs-actions.pod:8646 ../src/guestfs-actions.pod:8659 ../src/guestfs-actions.pod:8681 ../src/guestfs-actions.pod:8694 ../src/guestfs-actions.pod:8707 ../src/guestfs-actions.pod:8720 ../src/guestfs-actions.pod:9733 ../src/guestfs-actions.pod:9752 ../src/guestfs-actions.pod:9868 ../src/guestfs-actions.pod:9887 ../src/guestfs-actions.pod:9933 ../src/guestfs-actions.pod:9952 msgid "(Added in 1.0.66)" msgstr "" @@ -32013,7 +32030,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2721 ../src/guestfs-actions.pod:9773 +#: ../src/guestfs-actions.pod:2721 ../src/guestfs-actions.pod:9780 msgid "(Added in 1.0.16)" msgstr "" @@ -32122,7 +32139,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2797 ../src/guestfs-actions.pod:7321 ../src/guestfs-actions.pod:7800 ../src/guestfs-actions.pod:8358 ../src/guestfs-actions.pod:8377 ../src/guestfs-actions.pod:8393 ../src/guestfs-actions.pod:8417 ../src/guestfs-actions.pod:9358 ../src/guestfs-actions.pod:9373 ../src/guestfs-actions.pod:9842 +#: ../src/guestfs-actions.pod:2797 ../src/guestfs-actions.pod:7321 ../src/guestfs-actions.pod:7800 ../src/guestfs-actions.pod:8365 ../src/guestfs-actions.pod:8384 ../src/guestfs-actions.pod:8400 ../src/guestfs-actions.pod:8424 ../src/guestfs-actions.pod:9365 ../src/guestfs-actions.pod:9380 ../src/guestfs-actions.pod:9849 msgid "(Added in 1.0.26)" msgstr "" @@ -32146,7 +32163,7 @@ msgid "Return the current attach method. See C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2809 ../src/guestfs-actions.pod:7830 +#: ../src/guestfs-actions.pod:2809 ../src/guestfs-actions.pod:7837 msgid "(Added in 1.9.8)" msgstr "" @@ -32179,7 +32196,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2831 ../src/guestfs-actions.pod:7871 +#: ../src/guestfs-actions.pod:2831 ../src/guestfs-actions.pod:7878 msgid "(Added in 1.0.72)" msgstr "" @@ -32211,7 +32228,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2950 ../src/guestfs-actions.pod:2970 ../src/guestfs-actions.pod:7910 ../src/guestfs-actions.pod:7949 +#: ../src/guestfs-actions.pod:2950 ../src/guestfs-actions.pod:2970 ../src/guestfs-actions.pod:7917 ../src/guestfs-actions.pod:7956 msgid "(Added in 1.17.31)" msgstr "" @@ -32258,7 +32275,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2991 ../src/guestfs-actions.pod:3012 ../src/guestfs-actions.pod:7974 ../src/guestfs-actions.pod:7993 +#: ../src/guestfs-actions.pod:2991 ../src/guestfs-actions.pod:3012 ../src/guestfs-actions.pod:7981 ../src/guestfs-actions.pod:8000 msgid "(Added in 1.0.15)" msgstr "" @@ -32307,7 +32324,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:3031 ../src/guestfs-actions.pod:5945 ../src/guestfs-actions.pod:6208 ../src/guestfs-actions.pod:6227 ../src/guestfs-actions.pod:6246 ../src/guestfs-actions.pod:6258 ../src/guestfs-actions.pod:6275 ../src/guestfs-actions.pod:6288 ../src/guestfs-actions.pod:7546 ../src/guestfs-actions.pod:8036 ../src/guestfs-actions.pod:8328 ../src/guestfs-actions.pod:9085 +#: ../src/guestfs-actions.pod:3031 ../src/guestfs-actions.pod:5945 ../src/guestfs-actions.pod:6208 ../src/guestfs-actions.pod:6227 ../src/guestfs-actions.pod:6246 ../src/guestfs-actions.pod:6258 ../src/guestfs-actions.pod:6275 ../src/guestfs-actions.pod:6288 ../src/guestfs-actions.pod:7546 ../src/guestfs-actions.pod:8043 ../src/guestfs-actions.pod:8335 ../src/guestfs-actions.pod:9092 msgid "(Added in 1.0.55)" msgstr "" @@ -32326,7 +32343,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:8055 +#: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:8062 msgid "(Added in 1.5.4)" msgstr "" @@ -32366,7 +32383,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:3068 ../src/guestfs-actions.pod:8093 ../src/guestfs-actions.pod:9657 +#: ../src/guestfs-actions.pod:3068 ../src/guestfs-actions.pod:8100 ../src/guestfs-actions.pod:9664 msgid "(Added in 1.11.18)" msgstr "" @@ -32404,7 +32421,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:8121 +#: ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:8128 msgid "(Added in 1.0.6)" msgstr "" @@ -32423,7 +32440,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:5110 ../src/guestfs-actions.pod:5521 ../src/guestfs-actions.pod:5784 ../src/guestfs-actions.pod:7251 ../src/guestfs-actions.pod:7594 ../src/guestfs-actions.pod:8145 ../src/guestfs-actions.pod:8866 ../src/guestfs-actions.pod:8886 ../src/guestfs-actions.pod:9242 +#: ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:5110 ../src/guestfs-actions.pod:5521 ../src/guestfs-actions.pod:5784 ../src/guestfs-actions.pod:7251 ../src/guestfs-actions.pod:7594 ../src/guestfs-actions.pod:8152 ../src/guestfs-actions.pod:8873 ../src/guestfs-actions.pod:8893 ../src/guestfs-actions.pod:9249 msgid "(Added in 1.0.77)" msgstr "" @@ -32449,7 +32466,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:3123 ../src/guestfs-actions.pod:3197 ../src/guestfs-actions.pod:8164 ../src/guestfs-actions.pod:8238 +#: ../src/guestfs-actions.pod:3123 ../src/guestfs-actions.pod:3197 ../src/guestfs-actions.pod:8171 ../src/guestfs-actions.pod:8245 msgid "(Added in 1.0.67)" msgstr "" @@ -32590,7 +32607,7 @@ msgid "See also: C, C, L." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:3223 ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:4776 ../src/guestfs-actions.pod:7244 ../src/guestfs-actions.pod:7270 ../src/guestfs-actions.pod:7451 ../src/guestfs-actions.pod:9422 +#: ../src/guestfs-actions.pod:3223 ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:4776 ../src/guestfs-actions.pod:7244 ../src/guestfs-actions.pod:7270 ../src/guestfs-actions.pod:7451 ../src/guestfs-actions.pod:9429 msgid "" "This function returns a buffer, or NULL on error. The size of the returned " "buffer is written to C<*size_r>. I, or NULL if there was an " "error. I after use>." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:5080 ../src/guestfs-actions.pod:8509 ../src/guestfs-actions.pod:8527 ../src/guestfs-actions.pod:9030 +#: ../src/guestfs-actions.pod:5080 ../src/guestfs-actions.pod:8516 ../src/guestfs-actions.pod:8534 ../src/guestfs-actions.pod:9037 msgid "(Added in 0.9.2)" msgstr "" @@ -34511,7 +34528,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:5299 ../src/guestfs-actions.pod:9821 +#: ../src/guestfs-actions.pod:5299 ../src/guestfs-actions.pod:9828 msgid "(Added in 1.17.18)" msgstr "" @@ -34606,7 +34623,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:5395 ../src/guestfs-actions.pod:7308 ../src/guestfs-actions.pod:9461 +#: ../src/guestfs-actions.pod:5395 ../src/guestfs-actions.pod:7308 ../src/guestfs-actions.pod:9468 msgid "(Added in 1.0.13)" msgstr "" @@ -34627,7 +34644,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:5408 ../src/guestfs-actions.pod:9474 +#: ../src/guestfs-actions.pod:5408 ../src/guestfs-actions.pod:9481 msgid "(Added in 1.0.83)" msgstr "" @@ -35691,7 +35708,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:6445 ../src/guestfs-actions.pod:6494 ../src/guestfs-actions.pod:9134 +#: ../src/guestfs-actions.pod:6445 ../src/guestfs-actions.pod:6494 ../src/guestfs-actions.pod:9141 msgid "(Added in 1.17.22)" msgstr "" @@ -35999,7 +36016,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:6661 ../src/guestfs-actions.pod:6699 ../src/guestfs-actions.pod:6751 ../src/guestfs-actions.pod:8015 +#: ../src/guestfs-actions.pod:6661 ../src/guestfs-actions.pod:6699 ../src/guestfs-actions.pod:6751 ../src/guestfs-actions.pod:8022 msgid "(Added in 1.17.9)" msgstr "" @@ -36280,7 +36297,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:6876 ../src/guestfs-actions.pod:7335 ../src/guestfs-actions.pod:7408 ../src/guestfs-actions.pod:7676 ../src/guestfs-actions.pod:9637 +#: ../src/guestfs-actions.pod:6876 ../src/guestfs-actions.pod:7335 ../src/guestfs-actions.pod:7408 ../src/guestfs-actions.pod:7676 ../src/guestfs-actions.pod:9644 msgid "(Added in 1.3.14)" msgstr "" @@ -37205,12 +37222,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7832 +#: ../src/guestfs-actions.pod:7839 msgid "guestfs_set_autosync" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7834 +#: ../src/guestfs-actions.pod:7841 #, no-wrap msgid "" " int\n" @@ -37220,12 +37237,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7850 +#: ../src/guestfs-actions.pod:7857 msgid "guestfs_set_direct" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7852 +#: ../src/guestfs-actions.pod:7859 #, no-wrap msgid "" " int\n" @@ -37235,7 +37252,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7860 +#: ../src/guestfs-actions.pod:7867 msgid "" "One consequence of this is that log messages aren't caught by the library " "and handled by C, but go straight to " @@ -37243,12 +37260,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7873 +#: ../src/guestfs-actions.pod:7880 msgid "guestfs_set_e2attrs" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7875 +#: ../src/guestfs-actions.pod:7882 #, no-wrap msgid "" " int\n" @@ -37260,7 +37277,7 @@ msgid "" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7886 +#: ../src/guestfs-actions.pod:7893 #, no-wrap msgid "" " GUESTFS_SET_E2ATTRS_CLEAR, int clear,\n" @@ -37268,7 +37285,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7891 +#: ../src/guestfs-actions.pod:7898 msgid "" "C is a string of characters representing file attributes. See " "C for a list of possible attributes. Not all " @@ -37276,12 +37293,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7912 +#: ../src/guestfs-actions.pod:7919 msgid "guestfs_set_e2attrs_va" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7914 +#: ../src/guestfs-actions.pod:7921 #, no-wrap msgid "" " int\n" @@ -37293,17 +37310,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7920 +#: ../src/guestfs-actions.pod:7927 msgid "This is the \"va_list variant\" of L." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7924 +#: ../src/guestfs-actions.pod:7931 msgid "guestfs_set_e2attrs_argv" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7926 +#: ../src/guestfs-actions.pod:7933 #, no-wrap msgid "" " int\n" @@ -37316,17 +37333,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7932 +#: ../src/guestfs-actions.pod:7939 msgid "This is the \"argv variant\" of L." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7936 +#: ../src/guestfs-actions.pod:7943 msgid "guestfs_set_e2generation" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7938 +#: ../src/guestfs-actions.pod:7945 #, no-wrap msgid "" " int\n" @@ -37337,17 +37354,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7945 +#: ../src/guestfs-actions.pod:7952 msgid "See C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7951 +#: ../src/guestfs-actions.pod:7958 msgid "guestfs_set_e2label" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7953 +#: ../src/guestfs-actions.pod:7960 #, no-wrap msgid "" " int\n" @@ -37358,26 +37375,26 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7958 +#: ../src/guestfs-actions.pod:7965 msgid "" "I In new code, use the L " "call instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7969 +#: ../src/guestfs-actions.pod:7976 msgid "" "You can use either C or C to return " "the existing label on a filesystem." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7976 +#: ../src/guestfs-actions.pod:7983 msgid "guestfs_set_e2uuid" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7978 +#: ../src/guestfs-actions.pod:7985 #, no-wrap msgid "" " int\n" @@ -37388,19 +37405,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7988 +#: ../src/guestfs-actions.pod:7995 msgid "" "You can use either C or C to return " "the existing UUID of a filesystem." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7995 +#: ../src/guestfs-actions.pod:8002 msgid "guestfs_set_label" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:7997 +#: ../src/guestfs-actions.pod:8004 #, no-wrap msgid "" " int\n" @@ -37411,17 +37428,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8011 +#: ../src/guestfs-actions.pod:8018 msgid "To read the label on a filesystem, call C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8017 +#: ../src/guestfs-actions.pod:8024 msgid "guestfs_set_memsize" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8019 +#: ../src/guestfs-actions.pod:8026 #, no-wrap msgid "" " int\n" @@ -37431,19 +37448,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8023 +#: ../src/guestfs-actions.pod:8030 msgid "" "This sets the memory size in megabytes allocated to the qemu subprocess. " "This only has any effect if called before C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8038 +#: ../src/guestfs-actions.pod:8045 msgid "guestfs_set_network" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8040 +#: ../src/guestfs-actions.pod:8047 #, no-wrap msgid "" " int\n" @@ -37453,19 +37470,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8050 +#: ../src/guestfs-actions.pod:8057 msgid "" "You must call this before calling C, otherwise it has no " "effect." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8057 +#: ../src/guestfs-actions.pod:8064 msgid "guestfs_set_path" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8059 +#: ../src/guestfs-actions.pod:8066 #, no-wrap msgid "" " int\n" @@ -37475,12 +37492,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8074 +#: ../src/guestfs-actions.pod:8081 msgid "guestfs_set_pgroup" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8076 +#: ../src/guestfs-actions.pod:8083 #, no-wrap msgid "" " int\n" @@ -37490,7 +37507,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8086 +#: ../src/guestfs-actions.pod:8093 msgid "" "The default for this flag is false, because usually you want C<^C> to kill " "the subprocess. Guestfish sets this flag to true when used interactively, " @@ -37499,12 +37516,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8095 +#: ../src/guestfs-actions.pod:8102 msgid "guestfs_set_qemu" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8097 +#: ../src/guestfs-actions.pod:8104 #, no-wrap msgid "" " int\n" @@ -37514,12 +37531,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8123 +#: ../src/guestfs-actions.pod:8130 msgid "guestfs_set_recovery_proc" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8125 +#: ../src/guestfs-actions.pod:8132 #, no-wrap msgid "" " int\n" @@ -37529,7 +37546,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8129 +#: ../src/guestfs-actions.pod:8136 msgid "" "If this is called with the parameter C then C does " "not create a recovery process. The purpose of the recovery process is to " @@ -37538,19 +37555,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8134 +#: ../src/guestfs-actions.pod:8141 msgid "" "This only has any effect if called before C, and the default " "is true." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8147 +#: ../src/guestfs-actions.pod:8154 msgid "guestfs_set_selinux" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8149 +#: ../src/guestfs-actions.pod:8156 #, no-wrap msgid "" " int\n" @@ -37560,12 +37577,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8166 +#: ../src/guestfs-actions.pod:8173 msgid "guestfs_set_smp" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8168 +#: ../src/guestfs-actions.pod:8175 #, no-wrap msgid "" " int\n" @@ -37575,17 +37592,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8176 +#: ../src/guestfs-actions.pod:8183 msgid "This function must be called before C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8182 +#: ../src/guestfs-actions.pod:8189 msgid "guestfs_set_trace" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8184 +#: ../src/guestfs-actions.pod:8191 #, no-wrap msgid "" " int\n" @@ -37595,19 +37612,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8198 +#: ../src/guestfs-actions.pod:8205 msgid "" "Trace messages are normally sent to C, unless you register a " "callback to send them somewhere else (see C)." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8206 +#: ../src/guestfs-actions.pod:8213 msgid "guestfs_set_verbose" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8208 +#: ../src/guestfs-actions.pod:8215 #, no-wrap msgid "" " int\n" @@ -37617,19 +37634,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8217 +#: ../src/guestfs-actions.pod:8224 msgid "" "Verbose messages are normally sent to C, unless you register a " "callback to send them somewhere else (see C)." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8225 +#: ../src/guestfs-actions.pod:8232 msgid "guestfs_setcon" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8227 +#: ../src/guestfs-actions.pod:8234 #, no-wrap msgid "" " int\n" @@ -37639,12 +37656,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8240 +#: ../src/guestfs-actions.pod:8247 msgid "guestfs_setxattr" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8242 +#: ../src/guestfs-actions.pod:8249 #, no-wrap msgid "" " int\n" @@ -37657,17 +37674,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8253 +#: ../src/guestfs-actions.pod:8260 msgid "See also: C, L." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8259 +#: ../src/guestfs-actions.pod:8266 msgid "guestfs_sfdisk" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8261 +#: ../src/guestfs-actions.pod:8268 #, no-wrap msgid "" " int\n" @@ -37681,24 +37698,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8269 ../src/guestfs-actions.pod:8310 ../src/guestfs-actions.pod:8341 +#: ../src/guestfs-actions.pod:8276 ../src/guestfs-actions.pod:8317 ../src/guestfs-actions.pod:8348 msgid "" "I In new code, use the L " "call instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8296 +#: ../src/guestfs-actions.pod:8303 msgid "See also: C, C, C" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8303 +#: ../src/guestfs-actions.pod:8310 msgid "guestfs_sfdiskM" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8305 +#: ../src/guestfs-actions.pod:8312 #, no-wrap msgid "" " int\n" @@ -37709,7 +37726,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8317 +#: ../src/guestfs-actions.pod:8324 msgid "" "This is a simplified interface to the C command, where " "partition sizes are specified in megabytes only (rounded to the nearest " @@ -37718,19 +37735,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8323 +#: ../src/guestfs-actions.pod:8330 msgid "" "See also: C, the L manpage and " "C" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8330 +#: ../src/guestfs-actions.pod:8337 msgid "guestfs_sfdisk_N" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8332 +#: ../src/guestfs-actions.pod:8339 #, no-wrap msgid "" " int\n" @@ -37745,24 +37762,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8351 +#: ../src/guestfs-actions.pod:8358 msgid "" "For other parameters, see C. You should usually pass C<0> " "for the cyls/heads/sectors parameters." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8354 +#: ../src/guestfs-actions.pod:8361 msgid "See also: C" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8360 +#: ../src/guestfs-actions.pod:8367 msgid "guestfs_sfdisk_disk_geometry" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8362 +#: ../src/guestfs-actions.pod:8369 #, no-wrap msgid "" " char *\n" @@ -37772,7 +37789,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8366 +#: ../src/guestfs-actions.pod:8373 msgid "" "This displays the disk geometry of C read from the partition table. " "Especially in the case where the underlying block device has been resized, " @@ -37781,12 +37798,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8379 +#: ../src/guestfs-actions.pod:8386 msgid "guestfs_sfdisk_kernel_geometry" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8381 +#: ../src/guestfs-actions.pod:8388 #, no-wrap msgid "" " char *\n" @@ -37796,12 +37813,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8395 +#: ../src/guestfs-actions.pod:8402 msgid "guestfs_sfdisk_l" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8397 +#: ../src/guestfs-actions.pod:8404 #, no-wrap msgid "" " char *\n" @@ -37811,24 +37828,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8401 +#: ../src/guestfs-actions.pod:8408 msgid "" "I In new code, use the L " "call instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8412 +#: ../src/guestfs-actions.pod:8419 msgid "See also: C" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8419 +#: ../src/guestfs-actions.pod:8426 msgid "guestfs_sh" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8421 +#: ../src/guestfs-actions.pod:8428 #, no-wrap msgid "" " char *\n" @@ -37838,22 +37855,22 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8428 +#: ../src/guestfs-actions.pod:8435 msgid "This is like C, but passes the command to:" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8436 +#: ../src/guestfs-actions.pod:8443 msgid "All the provisos about C apply to this call." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8443 +#: ../src/guestfs-actions.pod:8450 msgid "guestfs_sh_lines" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8445 +#: ../src/guestfs-actions.pod:8452 #, no-wrap msgid "" " char **\n" @@ -37863,24 +37880,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8449 +#: ../src/guestfs-actions.pod:8456 msgid "" "This is the same as C, but splits the result into a list of " "lines." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8452 +#: ../src/guestfs-actions.pod:8459 msgid "See also: C" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8460 +#: ../src/guestfs-actions.pod:8467 msgid "guestfs_shutdown" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8462 +#: ../src/guestfs-actions.pod:8469 #, no-wrap msgid "" " int\n" @@ -37889,7 +37906,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8465 +#: ../src/guestfs-actions.pod:8472 msgid "" "This is the opposite of C. It performs an orderly shutdown " "of the backend process(es). If the autosync flag is set (which is the " @@ -37897,26 +37914,26 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8475 +#: ../src/guestfs-actions.pod:8482 msgid "" "This call does I close or free up the handle. You still need to call " "C afterwards." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8478 +#: ../src/guestfs-actions.pod:8485 msgid "" "C will call this if you don't do it explicitly, but note that " "any errors are ignored in that case." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8483 +#: ../src/guestfs-actions.pod:8490 msgid "guestfs_sleep" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8485 +#: ../src/guestfs-actions.pod:8492 #, no-wrap msgid "" " int\n" @@ -37926,17 +37943,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8493 +#: ../src/guestfs-actions.pod:8500 msgid "(Added in 1.0.41)" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8495 ../src/guestfs-structs.pod:109 +#: ../src/guestfs-actions.pod:8502 ../src/guestfs-structs.pod:109 msgid "guestfs_stat" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8497 +#: ../src/guestfs-actions.pod:8504 #, no-wrap msgid "" " struct guestfs_stat *\n" @@ -37946,12 +37963,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8511 ../src/guestfs-structs.pod:135 +#: ../src/guestfs-actions.pod:8518 ../src/guestfs-structs.pod:135 msgid "guestfs_statvfs" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8513 +#: ../src/guestfs-actions.pod:8520 #, no-wrap msgid "" " struct guestfs_statvfs *\n" @@ -37961,19 +37978,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8523 +#: ../src/guestfs-actions.pod:8530 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8529 +#: ../src/guestfs-actions.pod:8536 msgid "guestfs_strings" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8531 +#: ../src/guestfs-actions.pod:8538 #, no-wrap msgid "" " char **\n" @@ -37983,12 +38000,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8547 +#: ../src/guestfs-actions.pod:8554 msgid "guestfs_strings_e" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8549 +#: ../src/guestfs-actions.pod:8556 #, no-wrap msgid "" " char **\n" @@ -37999,26 +38016,26 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8554 +#: ../src/guestfs-actions.pod:8561 msgid "" "This is like the C command, but allows you to specify the " "encoding of strings that are looked for in the source file C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8564 +#: ../src/guestfs-actions.pod:8571 msgid "" "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of " "ISO-8859-X (this is what C uses)." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8602 +#: ../src/guestfs-actions.pod:8609 msgid "guestfs_swapoff_device" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8604 +#: ../src/guestfs-actions.pod:8611 #, no-wrap msgid "" " int\n" @@ -38028,19 +38045,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8608 +#: ../src/guestfs-actions.pod:8615 msgid "" "This command disables the libguestfs appliance swap device or partition " "named C. See C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8616 +#: ../src/guestfs-actions.pod:8623 msgid "guestfs_swapoff_file" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8618 +#: ../src/guestfs-actions.pod:8625 #, no-wrap msgid "" " int\n" @@ -38050,12 +38067,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8628 +#: ../src/guestfs-actions.pod:8635 msgid "guestfs_swapoff_label" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8630 +#: ../src/guestfs-actions.pod:8637 #, no-wrap msgid "" " int\n" @@ -38065,12 +38082,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8641 +#: ../src/guestfs-actions.pod:8648 msgid "guestfs_swapoff_uuid" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8643 +#: ../src/guestfs-actions.pod:8650 #, no-wrap msgid "" " int\n" @@ -38080,12 +38097,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8654 +#: ../src/guestfs-actions.pod:8661 msgid "guestfs_swapon_device" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8656 +#: ../src/guestfs-actions.pod:8663 #, no-wrap msgid "" " int\n" @@ -38095,7 +38112,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8660 +#: ../src/guestfs-actions.pod:8667 msgid "" "This command enables the libguestfs appliance to use the swap device or " "partition named C. The increased memory is made available for all " @@ -38103,12 +38120,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8676 +#: ../src/guestfs-actions.pod:8683 msgid "guestfs_swapon_file" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8678 +#: ../src/guestfs-actions.pod:8685 #, no-wrap msgid "" " int\n" @@ -38118,19 +38135,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8682 +#: ../src/guestfs-actions.pod:8689 msgid "" "This command enables swap to a file. See C for other " "notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8689 +#: ../src/guestfs-actions.pod:8696 msgid "guestfs_swapon_label" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8691 +#: ../src/guestfs-actions.pod:8698 #, no-wrap msgid "" " int\n" @@ -38140,19 +38157,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8695 +#: ../src/guestfs-actions.pod:8702 msgid "" "This command enables swap to a labeled swap partition. See " "C for other notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8702 +#: ../src/guestfs-actions.pod:8709 msgid "guestfs_swapon_uuid" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8704 +#: ../src/guestfs-actions.pod:8711 #, no-wrap msgid "" " int\n" @@ -38162,19 +38179,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8708 +#: ../src/guestfs-actions.pod:8715 msgid "" "This command enables swap to a swap partition with the given UUID. See " "C for other notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8715 +#: ../src/guestfs-actions.pod:8722 msgid "guestfs_sync" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8717 +#: ../src/guestfs-actions.pod:8724 #, no-wrap msgid "" " int\n" @@ -38183,12 +38200,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8730 +#: ../src/guestfs-actions.pod:8737 msgid "guestfs_tail" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8732 +#: ../src/guestfs-actions.pod:8739 #, no-wrap msgid "" " char **\n" @@ -38198,12 +38215,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8748 +#: ../src/guestfs-actions.pod:8755 msgid "guestfs_tail_n" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8750 +#: ../src/guestfs-actions.pod:8757 #, no-wrap msgid "" " char **\n" @@ -38214,12 +38231,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8772 +#: ../src/guestfs-actions.pod:8779 msgid "guestfs_tar_in" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8774 +#: ../src/guestfs-actions.pod:8781 #, no-wrap msgid "" " int\n" @@ -38230,22 +38247,22 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8782 +#: ../src/guestfs-actions.pod:8789 msgid "To upload a compressed tarball, use C or C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8787 ../src/guestfs-actions.pod:8804 ../src/guestfs-actions.pod:8820 ../src/guestfs-actions.pod:8836 +#: ../src/guestfs-actions.pod:8794 ../src/guestfs-actions.pod:8811 ../src/guestfs-actions.pod:8827 ../src/guestfs-actions.pod:8843 msgid "(Added in 1.0.3)" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8789 +#: ../src/guestfs-actions.pod:8796 msgid "guestfs_tar_out" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8791 +#: ../src/guestfs-actions.pod:8798 #, no-wrap msgid "" " int\n" @@ -38256,19 +38273,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8799 +#: ../src/guestfs-actions.pod:8806 msgid "" "To download a compressed tarball, use C or " "C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8806 +#: ../src/guestfs-actions.pod:8813 msgid "guestfs_tgz_in" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8808 +#: ../src/guestfs-actions.pod:8815 #, no-wrap msgid "" " int\n" @@ -38279,17 +38296,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8816 +#: ../src/guestfs-actions.pod:8823 msgid "To upload an uncompressed tarball, use C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8822 +#: ../src/guestfs-actions.pod:8829 msgid "guestfs_tgz_out" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8824 +#: ../src/guestfs-actions.pod:8831 #, no-wrap msgid "" " int\n" @@ -38300,17 +38317,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8832 +#: ../src/guestfs-actions.pod:8839 msgid "To download an uncompressed tarball, use C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8838 +#: ../src/guestfs-actions.pod:8845 msgid "guestfs_touch" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8840 +#: ../src/guestfs-actions.pod:8847 #, no-wrap msgid "" " int\n" @@ -38320,12 +38337,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8855 +#: ../src/guestfs-actions.pod:8862 msgid "guestfs_truncate" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8857 +#: ../src/guestfs-actions.pod:8864 #, no-wrap msgid "" " int\n" @@ -38335,12 +38352,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8868 +#: ../src/guestfs-actions.pod:8875 msgid "guestfs_truncate_size" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8870 +#: ../src/guestfs-actions.pod:8877 #, no-wrap msgid "" " int\n" @@ -38351,7 +38368,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8878 +#: ../src/guestfs-actions.pod:8885 msgid "" "If the current file size is less than C then the file is extended to " "the required size with zero bytes. This creates a sparse file (ie. disk " @@ -38360,12 +38377,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8888 +#: ../src/guestfs-actions.pod:8895 msgid "guestfs_tune2fs" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8890 +#: ../src/guestfs-actions.pod:8897 #, no-wrap msgid "" " int\n" @@ -38376,7 +38393,7 @@ msgid "" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8900 +#: ../src/guestfs-actions.pod:8907 #, no-wrap msgid "" " GUESTFS_TUNE2FS_FORCE, int force,\n" @@ -38393,7 +38410,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8980 +#: ../src/guestfs-actions.pod:8987 msgid "" "To get the current values of filesystem parameters, see " "C. For precise details of how tune2fs works, see the " @@ -38401,12 +38418,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8988 +#: ../src/guestfs-actions.pod:8995 msgid "guestfs_tune2fs_va" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8990 +#: ../src/guestfs-actions.pod:8997 #, no-wrap msgid "" " int\n" @@ -38417,17 +38434,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8995 +#: ../src/guestfs-actions.pod:9002 msgid "This is the \"va_list variant\" of L." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8999 +#: ../src/guestfs-actions.pod:9006 msgid "guestfs_tune2fs_argv" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9001 +#: ../src/guestfs-actions.pod:9008 #, no-wrap msgid "" " int\n" @@ -38438,17 +38455,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9006 +#: ../src/guestfs-actions.pod:9013 msgid "This is the \"argv variant\" of L." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9010 +#: ../src/guestfs-actions.pod:9017 msgid "guestfs_tune2fs_l" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9012 +#: ../src/guestfs-actions.pod:9019 #, no-wrap msgid "" " char **\n" @@ -38458,12 +38475,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9032 +#: ../src/guestfs-actions.pod:9039 msgid "guestfs_txz_in" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9034 +#: ../src/guestfs-actions.pod:9041 #, no-wrap msgid "" " int\n" @@ -38474,12 +38491,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9046 +#: ../src/guestfs-actions.pod:9053 msgid "guestfs_txz_out" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9048 +#: ../src/guestfs-actions.pod:9055 #, no-wrap msgid "" " int\n" @@ -38490,12 +38507,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9060 +#: ../src/guestfs-actions.pod:9067 msgid "guestfs_umask" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9062 +#: ../src/guestfs-actions.pod:9069 #, no-wrap msgid "" " int\n" @@ -38505,19 +38522,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9078 +#: ../src/guestfs-actions.pod:9085 msgid "" "See also C, L, C, " "C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9087 +#: ../src/guestfs-actions.pod:9094 msgid "guestfs_umount" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9089 +#: ../src/guestfs-actions.pod:9096 #, no-wrap msgid "" " int\n" @@ -38527,12 +38544,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9101 +#: ../src/guestfs-actions.pod:9108 msgid "guestfs_umount_all" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9103 +#: ../src/guestfs-actions.pod:9110 #, no-wrap msgid "" " int\n" @@ -38541,12 +38558,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9114 +#: ../src/guestfs-actions.pod:9121 msgid "guestfs_umount_local" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9116 +#: ../src/guestfs-actions.pod:9123 #, no-wrap msgid "" " int\n" @@ -38556,7 +38573,7 @@ msgid "" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9125 +#: ../src/guestfs-actions.pod:9132 #, no-wrap msgid "" " GUESTFS_UMOUNT_LOCAL_RETRY, int retry,\n" @@ -38564,12 +38581,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9136 +#: ../src/guestfs-actions.pod:9143 msgid "guestfs_umount_local_va" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9138 +#: ../src/guestfs-actions.pod:9145 #, no-wrap msgid "" " int\n" @@ -38579,17 +38596,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9142 +#: ../src/guestfs-actions.pod:9149 msgid "This is the \"va_list variant\" of L." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9146 +#: ../src/guestfs-actions.pod:9153 msgid "guestfs_umount_local_argv" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9148 +#: ../src/guestfs-actions.pod:9155 #, no-wrap msgid "" " int\n" @@ -38600,17 +38617,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9152 +#: ../src/guestfs-actions.pod:9159 msgid "This is the \"argv variant\" of L." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9156 +#: ../src/guestfs-actions.pod:9163 msgid "guestfs_upload" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9158 +#: ../src/guestfs-actions.pod:9165 #, no-wrap msgid "" " int\n" @@ -38621,17 +38638,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9168 +#: ../src/guestfs-actions.pod:9175 msgid "See also C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9179 +#: ../src/guestfs-actions.pod:9186 msgid "guestfs_upload_offset" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9181 +#: ../src/guestfs-actions.pod:9188 #, no-wrap msgid "" " int\n" @@ -38643,7 +38660,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9197 +#: ../src/guestfs-actions.pod:9204 msgid "" "Note that there is no limit on the amount of data that can be uploaded with " "this call, unlike with C, and this call always writes the " @@ -38651,17 +38668,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9202 +#: ../src/guestfs-actions.pod:9209 msgid "See also C, C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9213 +#: ../src/guestfs-actions.pod:9220 msgid "guestfs_utimens" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9215 +#: ../src/guestfs-actions.pod:9222 #, no-wrap msgid "" " int\n" @@ -38675,12 +38692,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9244 ../src/guestfs-structs.pod:175 +#: ../src/guestfs-actions.pod:9251 ../src/guestfs-structs.pod:175 msgid "guestfs_version" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9246 +#: ../src/guestfs-actions.pod:9253 #, no-wrap msgid "" " struct guestfs_version *\n" @@ -38689,7 +38706,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9274 +#: ../src/guestfs-actions.pod:9281 msgid "" "I Don't use this call to test for availability of features. In " "enterprise distributions we backport features from later versions into " @@ -38698,24 +38715,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9280 +#: ../src/guestfs-actions.pod:9287 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9284 +#: ../src/guestfs-actions.pod:9291 msgid "(Added in 1.0.58)" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9286 +#: ../src/guestfs-actions.pod:9293 msgid "guestfs_vfs_label" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9288 +#: ../src/guestfs-actions.pod:9295 #, no-wrap msgid "" " char *\n" @@ -38725,22 +38742,22 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9297 +#: ../src/guestfs-actions.pod:9304 msgid "To find a filesystem from the label, use C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9302 ../src/guestfs-actions.pod:9339 +#: ../src/guestfs-actions.pod:9309 ../src/guestfs-actions.pod:9346 msgid "(Added in 1.3.18)" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9304 +#: ../src/guestfs-actions.pod:9311 msgid "guestfs_vfs_type" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9306 +#: ../src/guestfs-actions.pod:9313 #, no-wrap msgid "" " char *\n" @@ -38750,12 +38767,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9323 +#: ../src/guestfs-actions.pod:9330 msgid "guestfs_vfs_uuid" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9325 +#: ../src/guestfs-actions.pod:9332 #, no-wrap msgid "" " char *\n" @@ -38765,17 +38782,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9334 +#: ../src/guestfs-actions.pod:9341 msgid "To find a filesystem from the UUID, use C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9341 +#: ../src/guestfs-actions.pod:9348 msgid "guestfs_vg_activate" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9343 +#: ../src/guestfs-actions.pod:9350 #, no-wrap msgid "" " int\n" @@ -38786,12 +38803,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9360 +#: ../src/guestfs-actions.pod:9367 msgid "guestfs_vg_activate_all" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9362 +#: ../src/guestfs-actions.pod:9369 #, no-wrap msgid "" " int\n" @@ -38801,12 +38818,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9375 +#: ../src/guestfs-actions.pod:9382 msgid "guestfs_vgcreate" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9377 +#: ../src/guestfs-actions.pod:9384 #, no-wrap msgid "" " int\n" @@ -38817,12 +38834,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9389 +#: ../src/guestfs-actions.pod:9396 msgid "guestfs_vglvuuids" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9391 +#: ../src/guestfs-actions.pod:9398 #, no-wrap msgid "" " char **\n" @@ -38832,24 +38849,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9398 +#: ../src/guestfs-actions.pod:9405 msgid "" "You can use this along with C and C calls to " "associate logical volumes and volume groups." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9401 +#: ../src/guestfs-actions.pod:9408 msgid "See also C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9409 +#: ../src/guestfs-actions.pod:9416 msgid "guestfs_vgmeta" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9411 +#: ../src/guestfs-actions.pod:9418 #, no-wrap msgid "" " char *\n" @@ -38860,17 +38877,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9426 +#: ../src/guestfs-actions.pod:9433 msgid "(Added in 1.17.20)" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9428 +#: ../src/guestfs-actions.pod:9435 msgid "guestfs_vgpvuuids" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9430 +#: ../src/guestfs-actions.pod:9437 #, no-wrap msgid "" " char **\n" @@ -38880,24 +38897,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9437 +#: ../src/guestfs-actions.pod:9444 msgid "" "You can use this along with C and C calls to " "associate physical volumes and volume groups." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9440 +#: ../src/guestfs-actions.pod:9447 msgid "See also C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9448 +#: ../src/guestfs-actions.pod:9455 msgid "guestfs_vgremove" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9450 +#: ../src/guestfs-actions.pod:9457 #, no-wrap msgid "" " int\n" @@ -38907,12 +38924,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9463 +#: ../src/guestfs-actions.pod:9470 msgid "guestfs_vgrename" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9465 +#: ../src/guestfs-actions.pod:9472 #, no-wrap msgid "" " int\n" @@ -38923,12 +38940,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9476 +#: ../src/guestfs-actions.pod:9483 msgid "guestfs_vgs" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9478 +#: ../src/guestfs-actions.pod:9485 #, no-wrap msgid "" " char **\n" @@ -38937,17 +38954,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9487 +#: ../src/guestfs-actions.pod:9494 msgid "See also C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9495 +#: ../src/guestfs-actions.pod:9502 msgid "guestfs_vgs_full" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9497 +#: ../src/guestfs-actions.pod:9504 #, no-wrap msgid "" " struct guestfs_lvm_vg_list *\n" @@ -38956,7 +38973,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9503 +#: ../src/guestfs-actions.pod:9510 msgid "" "This function returns a C, or NULL if there " "was an error. I after " @@ -38964,12 +38981,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9509 +#: ../src/guestfs-actions.pod:9516 msgid "guestfs_vgscan" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9511 +#: ../src/guestfs-actions.pod:9518 #, no-wrap msgid "" " int\n" @@ -38978,12 +38995,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9521 +#: ../src/guestfs-actions.pod:9528 msgid "guestfs_vguuid" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9523 +#: ../src/guestfs-actions.pod:9530 #, no-wrap msgid "" " char *\n" @@ -38993,12 +39010,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9534 +#: ../src/guestfs-actions.pod:9541 msgid "guestfs_wait_ready" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9536 +#: ../src/guestfs-actions.pod:9543 #, no-wrap msgid "" " int\n" @@ -39007,19 +39024,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9539 +#: ../src/guestfs-actions.pod:9546 msgid "" "I In new code, use the L call " "instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9546 +#: ../src/guestfs-actions.pod:9553 msgid "This function is a no op." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9548 +#: ../src/guestfs-actions.pod:9555 msgid "" "In versions of the API E 1.0.71 you had to call this function just after " "calling C to wait for the launch to complete. However this " @@ -39027,19 +39044,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9553 +#: ../src/guestfs-actions.pod:9560 msgid "" "If you see any calls to this function in code then you can just remove them, " "unless you want to retain compatibility with older versions of the API." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9561 +#: ../src/guestfs-actions.pod:9568 msgid "guestfs_wc_c" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9563 +#: ../src/guestfs-actions.pod:9570 #, no-wrap msgid "" " int\n" @@ -39049,12 +39066,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9574 +#: ../src/guestfs-actions.pod:9581 msgid "guestfs_wc_l" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9576 +#: ../src/guestfs-actions.pod:9583 #, no-wrap msgid "" " int\n" @@ -39064,12 +39081,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9587 +#: ../src/guestfs-actions.pod:9594 msgid "guestfs_wc_w" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9589 +#: ../src/guestfs-actions.pod:9596 #, no-wrap msgid "" " int\n" @@ -39079,12 +39096,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9600 +#: ../src/guestfs-actions.pod:9607 msgid "guestfs_wipefs" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9602 +#: ../src/guestfs-actions.pod:9609 #, no-wrap msgid "" " int\n" @@ -39094,17 +39111,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9612 +#: ../src/guestfs-actions.pod:9619 msgid "Compare with C which zeroes the first few blocks of a device." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9619 +#: ../src/guestfs-actions.pod:9626 msgid "guestfs_write" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9621 +#: ../src/guestfs-actions.pod:9628 #, no-wrap msgid "" " int\n" @@ -39116,17 +39133,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9630 +#: ../src/guestfs-actions.pod:9637 msgid "See also C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9639 +#: ../src/guestfs-actions.pod:9646 msgid "guestfs_write_append" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9641 +#: ../src/guestfs-actions.pod:9648 #, no-wrap msgid "" " int\n" @@ -39138,17 +39155,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9650 +#: ../src/guestfs-actions.pod:9657 msgid "See also C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9659 +#: ../src/guestfs-actions.pod:9666 msgid "guestfs_write_file" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9661 +#: ../src/guestfs-actions.pod:9668 #, no-wrap msgid "" " int\n" @@ -39160,19 +39177,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9667 +#: ../src/guestfs-actions.pod:9674 msgid "" "I In new code, use the L call " "instead." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9692 +#: ../src/guestfs-actions.pod:9699 msgid "guestfs_xfs_info" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9694 +#: ../src/guestfs-actions.pod:9701 #, no-wrap msgid "" " struct guestfs_xfsinfo *\n" @@ -39182,19 +39199,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9705 +#: ../src/guestfs-actions.pod:9712 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9709 +#: ../src/guestfs-actions.pod:9716 msgid "guestfs_zegrep" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9711 +#: ../src/guestfs-actions.pod:9718 #, no-wrap msgid "" " char **\n" @@ -39205,12 +39222,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9728 +#: ../src/guestfs-actions.pod:9735 msgid "guestfs_zegrepi" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9730 +#: ../src/guestfs-actions.pod:9737 #, no-wrap msgid "" " char **\n" @@ -39221,12 +39238,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9747 +#: ../src/guestfs-actions.pod:9754 msgid "guestfs_zero" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9749 +#: ../src/guestfs-actions.pod:9756 #, no-wrap msgid "" " int\n" @@ -39236,19 +39253,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9763 +#: ../src/guestfs-actions.pod:9770 msgid "" "See also: C, C, " "C" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9775 +#: ../src/guestfs-actions.pod:9782 msgid "guestfs_zero_device" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9777 +#: ../src/guestfs-actions.pod:9784 #, no-wrap msgid "" " int\n" @@ -39258,24 +39275,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9781 +#: ../src/guestfs-actions.pod:9788 msgid "" "This command writes zeroes over the entire C. Compare with " "C which just zeroes the first few blocks of a device." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9796 +#: ../src/guestfs-actions.pod:9803 msgid "(Added in 1.3.1)" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9798 +#: ../src/guestfs-actions.pod:9805 msgid "guestfs_zero_free_space" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9800 +#: ../src/guestfs-actions.pod:9807 #, no-wrap msgid "" " int\n" @@ -39285,7 +39302,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9810 +#: ../src/guestfs-actions.pod:9817 msgid "" "Free space is not \"trimmed\". You may want to call C " "either as an alternative to this, or after calling this, depending on your " @@ -39293,12 +39310,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9823 +#: ../src/guestfs-actions.pod:9830 msgid "guestfs_zerofree" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9825 +#: ../src/guestfs-actions.pod:9832 #, no-wrap msgid "" " int\n" @@ -39308,12 +39325,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9844 +#: ../src/guestfs-actions.pod:9851 msgid "guestfs_zfgrep" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9846 +#: ../src/guestfs-actions.pod:9853 #, no-wrap msgid "" " char **\n" @@ -39324,12 +39341,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9863 +#: ../src/guestfs-actions.pod:9870 msgid "guestfs_zfgrepi" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9865 +#: ../src/guestfs-actions.pod:9872 #, no-wrap msgid "" " char **\n" @@ -39340,12 +39357,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9882 +#: ../src/guestfs-actions.pod:9889 msgid "guestfs_zfile" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9884 +#: ../src/guestfs-actions.pod:9891 #, no-wrap msgid "" " char *\n" @@ -39356,26 +39373,26 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9889 +#: ../src/guestfs-actions.pod:9896 msgid "" "I In new code, use the L call " "instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9901 +#: ../src/guestfs-actions.pod:9908 msgid "" "Since 1.0.63, use C instead which can now process compressed " "files." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9909 +#: ../src/guestfs-actions.pod:9916 msgid "guestfs_zgrep" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9911 +#: ../src/guestfs-actions.pod:9918 #, no-wrap msgid "" " char **\n" @@ -39386,12 +39403,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9928 +#: ../src/guestfs-actions.pod:9935 msgid "guestfs_zgrepi" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:9930 +#: ../src/guestfs-actions.pod:9937 #, no-wrap msgid "" " char **\n" diff --git a/po-docs/uk.po b/po-docs/uk.po index 5887cee19..9982680da 100644 --- a/po-docs/uk.po +++ b/po-docs/uk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libguestfs\n" "Report-Msgid-Bugs-To: libguestfs@redhat.com\n" -"POT-Creation-Date: 2012-07-18 21:04+0200\n" +"POT-Creation-Date: 2012-07-19 16:02+0200\n" "PO-Revision-Date: 2012-07-10 17:15+0000\n" "Last-Translator: rjones \n" "Language-Team: Ukrainian \n" @@ -3318,7 +3318,7 @@ msgid "" msgstr "" #. type: =head2 -#: ../cat/virt-ls.pod:181 ../fish/guestfish-actions.pod:5108 +#: ../cat/virt-ls.pod:181 ../fish/guestfish-actions.pod:5115 msgid "path" msgstr "шлях" @@ -8816,20 +8816,20 @@ msgstr "" #: ../fish/guestfish-actions.pod:1324 ../fish/guestfish-actions.pod:1851 #: ../fish/guestfish-actions.pod:1865 ../fish/guestfish-actions.pod:3068 #: ../fish/guestfish-actions.pod:3899 ../fish/guestfish-actions.pod:4315 -#: ../fish/guestfish-actions.pod:5043 ../fish/guestfish-actions.pod:5291 -#: ../fish/guestfish-actions.pod:5311 ../fish/guestfish-actions.pod:5330 -#: ../fish/guestfish-actions.pod:5368 ../fish/guestfish-actions.pod:6150 -#: ../fish/guestfish-actions.pod:6278 ../src/guestfs-actions.pod:10 +#: ../fish/guestfish-actions.pod:5050 ../fish/guestfish-actions.pod:5298 +#: ../fish/guestfish-actions.pod:5318 ../fish/guestfish-actions.pod:5337 +#: ../fish/guestfish-actions.pod:5375 ../fish/guestfish-actions.pod:6157 +#: ../fish/guestfish-actions.pod:6285 ../src/guestfs-actions.pod:10 #: ../src/guestfs-actions.pod:301 ../src/guestfs-actions.pod:322 #: ../src/guestfs-actions.pod:1835 ../src/guestfs-actions.pod:1892 #: ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:2260 #: ../src/guestfs-actions.pod:2981 ../src/guestfs-actions.pod:3002 #: ../src/guestfs-actions.pod:4700 ../src/guestfs-actions.pod:6059 -#: ../src/guestfs-actions.pod:6867 ../src/guestfs-actions.pod:7961 -#: ../src/guestfs-actions.pod:8272 ../src/guestfs-actions.pod:8313 -#: ../src/guestfs-actions.pod:8344 ../src/guestfs-actions.pod:8404 -#: ../src/guestfs-actions.pod:9542 ../src/guestfs-actions.pod:9670 -#: ../src/guestfs-actions.pod:9892 +#: ../src/guestfs-actions.pod:6867 ../src/guestfs-actions.pod:7968 +#: ../src/guestfs-actions.pod:8279 ../src/guestfs-actions.pod:8320 +#: ../src/guestfs-actions.pod:8351 ../src/guestfs-actions.pod:8411 +#: ../src/guestfs-actions.pod:9549 ../src/guestfs-actions.pod:9677 +#: ../src/guestfs-actions.pod:9899 msgid "" "Deprecated functions will not be removed from the API, but the fact that " "they are deprecated indicates that there are problems with correct use of " @@ -9008,8 +9008,8 @@ msgstr "" #: ../fish/guestfish-actions.pod:3882 ../fish/guestfish-actions.pod:3915 #: ../fish/guestfish-actions.pod:4078 ../fish/guestfish-actions.pod:4108 #: ../fish/guestfish-actions.pod:4251 ../fish/guestfish-actions.pod:4267 -#: ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:5019 -#: ../fish/guestfish-actions.pod:5752 ../fish/guestfish-actions.pod:5834 +#: ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:5026 +#: ../fish/guestfish-actions.pod:5759 ../fish/guestfish-actions.pod:5841 msgid "" "This command has one or more optional arguments. See L." msgstr "" @@ -9781,10 +9781,10 @@ msgstr "" #: ../fish/guestfish-actions.pod:985 ../fish/guestfish-actions.pod:1168 #: ../fish/guestfish-actions.pod:1187 ../fish/guestfish-actions.pod:1610 #: ../fish/guestfish-actions.pod:4228 ../fish/guestfish-actions.pod:4249 -#: ../fish/guestfish-actions.pod:5608 ../fish/guestfish-actions.pod:5620 -#: ../fish/guestfish-actions.pod:5631 ../fish/guestfish-actions.pod:5642 -#: ../fish/guestfish-actions.pod:5773 ../fish/guestfish-actions.pod:5782 -#: ../fish/guestfish-actions.pod:5847 ../fish/guestfish-actions.pod:5870 +#: ../fish/guestfish-actions.pod:5615 ../fish/guestfish-actions.pod:5627 +#: ../fish/guestfish-actions.pod:5638 ../fish/guestfish-actions.pod:5649 +#: ../fish/guestfish-actions.pod:5780 ../fish/guestfish-actions.pod:5789 +#: ../fish/guestfish-actions.pod:5854 ../fish/guestfish-actions.pod:5877 msgid "Use C<-> instead of a filename to read/write from stdin/stdout." msgstr "" @@ -10216,9 +10216,9 @@ msgstr "" #. type: textblock #: ../fish/guestfish-actions.pod:656 ../fish/guestfish-actions.pod:3584 -#: ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:5682 +#: ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:5689 #: ../src/guestfs-actions.pod:983 ../src/guestfs-actions.pod:5563 -#: ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:8914 +#: ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:8921 msgid "The optional parameters are:" msgstr "Додатковими параметрами є:" @@ -10567,13 +10567,13 @@ msgstr "" #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2145 #: ../fish/guestfish-actions.pod:4579 ../fish/guestfish-actions.pod:4594 #: ../fish/guestfish-actions.pod:4670 ../fish/guestfish-actions.pod:4687 -#: ../fish/guestfish-actions.pod:4702 ../fish/guestfish-actions.pod:5449 -#: ../fish/guestfish-actions.pod:5495 ../fish/guestfish-actions.pod:5580 -#: ../fish/guestfish-actions.pod:5595 ../fish/guestfish-actions.pod:6114 -#: ../fish/guestfish-actions.pod:6126 ../fish/guestfish-actions.pod:6144 -#: ../fish/guestfish-actions.pod:6172 ../fish/guestfish-actions.pod:6182 -#: ../fish/guestfish-actions.pod:6250 ../fish/guestfish-actions.pod:6260 -#: ../fish/guestfish-actions.pod:6289 ../fish/guestfish-actions.pod:6299 +#: ../fish/guestfish-actions.pod:4702 ../fish/guestfish-actions.pod:5456 +#: ../fish/guestfish-actions.pod:5502 ../fish/guestfish-actions.pod:5587 +#: ../fish/guestfish-actions.pod:5602 ../fish/guestfish-actions.pod:6121 +#: ../fish/guestfish-actions.pod:6133 ../fish/guestfish-actions.pod:6151 +#: ../fish/guestfish-actions.pod:6179 ../fish/guestfish-actions.pod:6189 +#: ../fish/guestfish-actions.pod:6257 ../fish/guestfish-actions.pod:6267 +#: ../fish/guestfish-actions.pod:6296 ../fish/guestfish-actions.pod:6306 #: ../src/guestfs-actions.pod:1256 ../src/guestfs-actions.pod:1435 #: ../src/guestfs-actions.pod:1455 ../src/guestfs-actions.pod:2195 #: ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2317 @@ -10583,13 +10583,13 @@ msgstr "" #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3444 #: ../src/guestfs-actions.pod:7248 ../src/guestfs-actions.pod:7274 #: ../src/guestfs-actions.pod:7405 ../src/guestfs-actions.pod:7431 -#: ../src/guestfs-actions.pod:7455 ../src/guestfs-actions.pod:8542 -#: ../src/guestfs-actions.pod:8597 ../src/guestfs-actions.pod:8743 -#: ../src/guestfs-actions.pod:8767 ../src/guestfs-actions.pod:9634 -#: ../src/guestfs-actions.pod:9654 ../src/guestfs-actions.pod:9687 -#: ../src/guestfs-actions.pod:9723 ../src/guestfs-actions.pod:9742 -#: ../src/guestfs-actions.pod:9858 ../src/guestfs-actions.pod:9877 -#: ../src/guestfs-actions.pod:9923 ../src/guestfs-actions.pod:9942 +#: ../src/guestfs-actions.pod:7455 ../src/guestfs-actions.pod:8549 +#: ../src/guestfs-actions.pod:8604 ../src/guestfs-actions.pod:8750 +#: ../src/guestfs-actions.pod:8774 ../src/guestfs-actions.pod:9641 +#: ../src/guestfs-actions.pod:9661 ../src/guestfs-actions.pod:9694 +#: ../src/guestfs-actions.pod:9730 ../src/guestfs-actions.pod:9749 +#: ../src/guestfs-actions.pod:9865 ../src/guestfs-actions.pod:9884 +#: ../src/guestfs-actions.pod:9930 ../src/guestfs-actions.pod:9949 msgid "" "Because of the message protocol, there is a transfer limit of somewhere " "between 2MB and 4MB. See L." @@ -11343,8 +11343,8 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:1164 ../fish/guestfish-actions.pod:5843 -#: ../src/guestfs-actions.pod:1990 ../src/guestfs-actions.pod:9166 +#: ../fish/guestfish-actions.pod:1164 ../fish/guestfish-actions.pod:5850 +#: ../src/guestfs-actions.pod:1990 ../src/guestfs-actions.pod:9173 msgid "C can also be a named pipe." msgstr "" @@ -12518,8 +12518,8 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:1727 ../fish/guestfish-actions.pod:5015 -#: ../src/guestfs-actions.pod:2847 ../src/guestfs-actions.pod:7904 +#: ../fish/guestfish-actions.pod:1727 ../fish/guestfish-actions.pod:5022 +#: ../src/guestfs-actions.pod:2847 ../src/guestfs-actions.pod:7911 msgid "" "These attributes are only present when the file is located on an ext2/3/4 " "filesystem. Using this call on other filesystem types will result in an " @@ -12869,9 +12869,9 @@ msgstr "" #. type: textblock #: ../fish/guestfish-actions.pod:1880 ../fish/guestfish-actions.pod:1937 -#: ../fish/guestfish-actions.pod:5088 ../fish/guestfish-actions.pod:5192 +#: ../fish/guestfish-actions.pod:5095 ../fish/guestfish-actions.pod:5199 #: ../src/guestfs-actions.pod:3026 ../src/guestfs-actions.pod:3118 -#: ../src/guestfs-actions.pod:8031 ../src/guestfs-actions.pod:8159 +#: ../src/guestfs-actions.pod:8038 ../src/guestfs-actions.pod:8166 msgid "" "For more information on the architecture of libguestfs, see L." msgstr "" @@ -13450,8 +13450,8 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:2114 ../fish/guestfish-actions.pod:5593 -#: ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:8761 +#: ../fish/guestfish-actions.pod:2114 ../fish/guestfish-actions.pod:5600 +#: ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:8768 msgid "If the parameter C is zero, this returns an empty list." msgstr "" @@ -16040,8 +16040,8 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:3282 ../fish/guestfish-actions.pod:5428 -#: ../src/guestfs-actions.pod:5068 ../src/guestfs-actions.pod:8501 +#: ../fish/guestfish-actions.pod:3282 ../fish/guestfish-actions.pod:5435 +#: ../src/guestfs-actions.pod:5068 ../src/guestfs-actions.pod:8508 msgid "Returns file information for the given C." msgstr "" @@ -17908,8 +17908,8 @@ msgstr "" #. type: textblock #: ../fish/guestfish-actions.pod:4106 ../fish/guestfish-actions.pod:4130 -#: ../fish/guestfish-actions.pod:5832 ../src/guestfs-actions.pod:6441 -#: ../src/guestfs-actions.pod:6490 ../src/guestfs-actions.pod:9130 +#: ../fish/guestfish-actions.pod:5839 ../src/guestfs-actions.pod:6441 +#: ../src/guestfs-actions.pod:6490 ../src/guestfs-actions.pod:9137 msgid "See L for full documentation." msgstr "" @@ -18313,8 +18313,8 @@ msgid "" msgstr "" #. type: =item -#: ../fish/guestfish-actions.pod:4287 ../fish/guestfish-actions.pod:5686 -#: ../src/guestfs-actions.pod:6815 ../src/guestfs-actions.pod:8918 +#: ../fish/guestfish-actions.pod:4287 ../fish/guestfish-actions.pod:5693 +#: ../src/guestfs-actions.pod:6815 ../src/guestfs-actions.pod:8925 msgid "C" msgstr "C" @@ -19847,16 +19847,35 @@ msgstr "" #. type: =item #: ../fish/guestfish-actions.pod:4952 ../src/guestfs-actions.pod:7818 +#, fuzzy +#| msgid "B<-d libvirt-domain>" +msgid "C" +msgstr "B<-d домен-libvirt>" + +#. type: =item +#: ../fish/guestfish-actions.pod:4954 ../src/guestfs-actions.pod:7820 +msgid "C>" +msgstr "" + +#. type: textblock +#: ../fish/guestfish-actions.pod:4956 ../src/guestfs-actions.pod:7822 +msgid "" +"Use libvirt to launch the appliance. The optional I is the libvirt " +"connection URI to use (see L)." +msgstr "" + +#. type: =item +#: ../fish/guestfish-actions.pod:4959 ../src/guestfs-actions.pod:7825 msgid "C>" msgstr "C>" #. type: textblock -#: ../fish/guestfish-actions.pod:4954 ../src/guestfs-actions.pod:7820 +#: ../fish/guestfish-actions.pod:4961 ../src/guestfs-actions.pod:7827 msgid "Connect to the Unix domain socket I." msgstr "Встановити з’єднання з сокетом домену Unix I<шлях>." #. type: textblock -#: ../fish/guestfish-actions.pod:4956 ../src/guestfs-actions.pod:7822 +#: ../fish/guestfish-actions.pod:4963 ../src/guestfs-actions.pod:7829 msgid "" "This method lets you connect to an existing daemon or (using virtio-serial) " "to a live guest. For more information, see L is true, this enables autosync. Libguestfs will make a best " "effort attempt to make filesystems consistent and synchronized when the " @@ -19892,24 +19911,24 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4973 ../src/guestfs-actions.pod:7843 +#: ../fish/guestfish-actions.pod:4980 ../src/guestfs-actions.pod:7850 msgid "" "This is enabled by default (since libguestfs 1.5.24, previously it was " "disabled by default)." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:4976 +#: ../fish/guestfish-actions.pod:4983 msgid "set-direct" msgstr "set-direct" #. type: =head2 -#: ../fish/guestfish-actions.pod:4978 +#: ../fish/guestfish-actions.pod:4985 msgid "direct" msgstr "direct" #. type: verbatim -#: ../fish/guestfish-actions.pod:4980 +#: ../fish/guestfish-actions.pod:4987 #, no-wrap msgid "" " set-direct true|false\n" @@ -19919,36 +19938,36 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:4982 ../src/guestfs-actions.pod:7856 +#: ../fish/guestfish-actions.pod:4989 ../src/guestfs-actions.pod:7863 msgid "" "If the direct appliance mode flag is enabled, then stdin and stdout are " "passed directly through to the appliance once it is launched." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4986 +#: ../fish/guestfish-actions.pod:4993 msgid "" "One consequence of this is that log messages aren't caught by the library " "and handled by L, but go straight to stdout." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4990 ../src/guestfs-actions.pod:7864 +#: ../fish/guestfish-actions.pod:4997 ../src/guestfs-actions.pod:7871 msgid "You probably don't want to use this unless you know what you are doing." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4993 ../src/guestfs-actions.pod:7867 +#: ../fish/guestfish-actions.pod:5000 ../src/guestfs-actions.pod:7874 msgid "The default is disabled." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:4995 +#: ../fish/guestfish-actions.pod:5002 msgid "set-e2attrs" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:4997 +#: ../fish/guestfish-actions.pod:5004 #, no-wrap msgid "" " set-e2attrs file attrs [clear:true|false]\n" @@ -19956,14 +19975,14 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:4999 ../src/guestfs-actions.pod:7888 +#: ../fish/guestfish-actions.pod:5006 ../src/guestfs-actions.pod:7895 msgid "" "This sets or clears the file attributes C associated with the inode " "C." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5002 +#: ../fish/guestfish-actions.pod:5009 msgid "" "C is a string of characters representing file attributes. See L for a list of possible attributes. Not all attributes can be " @@ -19971,31 +19990,31 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5006 ../src/guestfs-actions.pod:7895 +#: ../fish/guestfish-actions.pod:5013 ../src/guestfs-actions.pod:7902 msgid "" "If optional boolean C is not present or false, then the C " "listed are set in the inode." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5009 ../src/guestfs-actions.pod:7898 +#: ../fish/guestfish-actions.pod:5016 ../src/guestfs-actions.pod:7905 msgid "If C is true, then the C listed are cleared in the inode." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5012 ../src/guestfs-actions.pod:7901 +#: ../fish/guestfish-actions.pod:5019 ../src/guestfs-actions.pod:7908 msgid "" "In both cases, other attributes not present in the C string are left " "unchanged." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:5021 +#: ../fish/guestfish-actions.pod:5028 msgid "set-e2generation" msgstr "" #. type: verbatim -#: ../fish/guestfish-actions.pod:5023 +#: ../fish/guestfish-actions.pod:5030 #, no-wrap msgid "" " set-e2generation file generation\n" @@ -20003,22 +20022,22 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5025 ../src/guestfs-actions.pod:7943 +#: ../fish/guestfish-actions.pod:5032 ../src/guestfs-actions.pod:7950 msgid "This sets the ext2 file generation of a file." msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5027 +#: ../fish/guestfish-actions.pod:5034 msgid "See L." msgstr "Див. L." #. type: =head2 -#: ../fish/guestfish-actions.pod:5029 +#: ../fish/guestfish-actions.pod:5036 msgid "set-e2label" msgstr "set-e2label" #. type: verbatim -#: ../fish/guestfish-actions.pod:5031 +#: ../fish/guestfish-actions.pod:5038 #, no-wrap msgid "" " set-e2label device label\n" @@ -20026,33 +20045,33 @@ msgid "" msgstr "" #. type: textblock -#: ../fish/guestfish-actions.pod:5033 ../src/guestfs-actions.pod:7965 +#: ../fish/guestfish-actions.pod:5040 ../src/guestfs-actions.pod:7972 msgid "" "This sets the ext2/3/4 filesystem label of the filesystem on C to " "C call instead." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:6282 +#: ../fish/guestfish-actions.pod:6289 msgid "zgrep" msgstr "zgrep" #. type: verbatim -#: ../fish/guestfish-actions.pod:6284 +#: ../fish/guestfish-actions.pod:6291 #, no-wrap msgid "" " zgrep regex path\n" @@ -22942,18 +22961,18 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:6286 ../src/guestfs-actions.pod:9916 +#: ../fish/guestfish-actions.pod:6293 ../src/guestfs-actions.pod:9923 msgid "" "This calls the external C program and returns the matching lines." msgstr "" #. type: =head2 -#: ../fish/guestfish-actions.pod:6292 +#: ../fish/guestfish-actions.pod:6299 msgid "zgrepi" msgstr "zgrepi" #. type: verbatim -#: ../fish/guestfish-actions.pod:6294 +#: ../fish/guestfish-actions.pod:6301 #, no-wrap msgid "" " zgrepi regex path\n" @@ -22963,7 +22982,7 @@ msgstr "" "\n" #. type: textblock -#: ../fish/guestfish-actions.pod:6296 ../src/guestfs-actions.pod:9935 +#: ../fish/guestfish-actions.pod:6303 ../src/guestfs-actions.pod:9942 msgid "" "This calls the external C program and returns the matching lines." msgstr "" @@ -31331,39 +31350,39 @@ msgstr "" #: ../src/guestfs-actions.pod:7712 ../src/guestfs-actions.pod:7726 #: ../src/guestfs-actions.pod:7742 ../src/guestfs-actions.pod:7760 #: ../src/guestfs-actions.pod:7779 ../src/guestfs-actions.pod:7798 -#: ../src/guestfs-actions.pod:7828 ../src/guestfs-actions.pod:7846 -#: ../src/guestfs-actions.pod:7869 ../src/guestfs-actions.pod:7908 -#: ../src/guestfs-actions.pod:7947 ../src/guestfs-actions.pod:7972 -#: ../src/guestfs-actions.pod:7991 ../src/guestfs-actions.pod:8013 -#: ../src/guestfs-actions.pod:8034 ../src/guestfs-actions.pod:8053 -#: ../src/guestfs-actions.pod:8070 ../src/guestfs-actions.pod:8091 -#: ../src/guestfs-actions.pod:8119 ../src/guestfs-actions.pod:8143 -#: ../src/guestfs-actions.pod:8162 ../src/guestfs-actions.pod:8178 -#: ../src/guestfs-actions.pod:8202 ../src/guestfs-actions.pod:8221 -#: ../src/guestfs-actions.pod:8236 ../src/guestfs-actions.pod:8255 -#: ../src/guestfs-actions.pod:8299 ../src/guestfs-actions.pod:8326 -#: ../src/guestfs-actions.pod:8356 ../src/guestfs-actions.pod:8481 -#: ../src/guestfs-actions.pod:8491 ../src/guestfs-actions.pod:8612 -#: ../src/guestfs-actions.pod:8624 ../src/guestfs-actions.pod:8637 -#: ../src/guestfs-actions.pod:8650 ../src/guestfs-actions.pod:8672 -#: ../src/guestfs-actions.pod:8685 ../src/guestfs-actions.pod:8698 -#: ../src/guestfs-actions.pod:8711 ../src/guestfs-actions.pod:8726 -#: ../src/guestfs-actions.pod:8785 ../src/guestfs-actions.pod:8802 -#: ../src/guestfs-actions.pod:8818 ../src/guestfs-actions.pod:8834 -#: ../src/guestfs-actions.pod:8851 ../src/guestfs-actions.pod:8864 -#: ../src/guestfs-actions.pod:8884 ../src/guestfs-actions.pod:8984 -#: ../src/guestfs-actions.pod:9042 ../src/guestfs-actions.pod:9056 -#: ../src/guestfs-actions.pod:9097 ../src/guestfs-actions.pod:9110 -#: ../src/guestfs-actions.pod:9132 ../src/guestfs-actions.pod:9170 -#: ../src/guestfs-actions.pod:9204 ../src/guestfs-actions.pod:9240 -#: ../src/guestfs-actions.pod:9356 ../src/guestfs-actions.pod:9371 -#: ../src/guestfs-actions.pod:9385 ../src/guestfs-actions.pod:9459 -#: ../src/guestfs-actions.pod:9472 ../src/guestfs-actions.pod:9517 -#: ../src/guestfs-actions.pod:9557 ../src/guestfs-actions.pod:9615 -#: ../src/guestfs-actions.pod:9632 ../src/guestfs-actions.pod:9652 -#: ../src/guestfs-actions.pod:9685 ../src/guestfs-actions.pod:9766 -#: ../src/guestfs-actions.pod:9789 ../src/guestfs-actions.pod:9814 -#: ../src/guestfs-actions.pod:9840 +#: ../src/guestfs-actions.pod:7835 ../src/guestfs-actions.pod:7853 +#: ../src/guestfs-actions.pod:7876 ../src/guestfs-actions.pod:7915 +#: ../src/guestfs-actions.pod:7954 ../src/guestfs-actions.pod:7979 +#: ../src/guestfs-actions.pod:7998 ../src/guestfs-actions.pod:8020 +#: ../src/guestfs-actions.pod:8041 ../src/guestfs-actions.pod:8060 +#: ../src/guestfs-actions.pod:8077 ../src/guestfs-actions.pod:8098 +#: ../src/guestfs-actions.pod:8126 ../src/guestfs-actions.pod:8150 +#: ../src/guestfs-actions.pod:8169 ../src/guestfs-actions.pod:8185 +#: ../src/guestfs-actions.pod:8209 ../src/guestfs-actions.pod:8228 +#: ../src/guestfs-actions.pod:8243 ../src/guestfs-actions.pod:8262 +#: ../src/guestfs-actions.pod:8306 ../src/guestfs-actions.pod:8333 +#: ../src/guestfs-actions.pod:8363 ../src/guestfs-actions.pod:8488 +#: ../src/guestfs-actions.pod:8498 ../src/guestfs-actions.pod:8619 +#: ../src/guestfs-actions.pod:8631 ../src/guestfs-actions.pod:8644 +#: ../src/guestfs-actions.pod:8657 ../src/guestfs-actions.pod:8679 +#: ../src/guestfs-actions.pod:8692 ../src/guestfs-actions.pod:8705 +#: ../src/guestfs-actions.pod:8718 ../src/guestfs-actions.pod:8733 +#: ../src/guestfs-actions.pod:8792 ../src/guestfs-actions.pod:8809 +#: ../src/guestfs-actions.pod:8825 ../src/guestfs-actions.pod:8841 +#: ../src/guestfs-actions.pod:8858 ../src/guestfs-actions.pod:8871 +#: ../src/guestfs-actions.pod:8891 ../src/guestfs-actions.pod:8991 +#: ../src/guestfs-actions.pod:9049 ../src/guestfs-actions.pod:9063 +#: ../src/guestfs-actions.pod:9104 ../src/guestfs-actions.pod:9117 +#: ../src/guestfs-actions.pod:9139 ../src/guestfs-actions.pod:9177 +#: ../src/guestfs-actions.pod:9211 ../src/guestfs-actions.pod:9247 +#: ../src/guestfs-actions.pod:9363 ../src/guestfs-actions.pod:9378 +#: ../src/guestfs-actions.pod:9392 ../src/guestfs-actions.pod:9466 +#: ../src/guestfs-actions.pod:9479 ../src/guestfs-actions.pod:9524 +#: ../src/guestfs-actions.pod:9564 ../src/guestfs-actions.pod:9622 +#: ../src/guestfs-actions.pod:9639 ../src/guestfs-actions.pod:9659 +#: ../src/guestfs-actions.pod:9692 ../src/guestfs-actions.pod:9773 +#: ../src/guestfs-actions.pod:9796 ../src/guestfs-actions.pod:9821 +#: ../src/guestfs-actions.pod:9847 msgid "This function returns 0 on success or -1 on error." msgstr "Ця функція повертає 0 у разі успіху і -1 у разі помилки." @@ -31372,10 +31391,10 @@ msgstr "Ця функція повертає 0 у разі успіху і -1 у #: ../src/guestfs-actions.pod:1589 ../src/guestfs-actions.pod:2820 #: ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3182 #: ../src/guestfs-actions.pod:4710 ../src/guestfs-actions.pod:4730 -#: ../src/guestfs-actions.pod:6350 ../src/guestfs-actions.pod:7848 -#: ../src/guestfs-actions.pod:8072 ../src/guestfs-actions.pod:8223 -#: ../src/guestfs-actions.pod:8728 ../src/guestfs-actions.pod:8853 -#: ../src/guestfs-actions.pod:9559 +#: ../src/guestfs-actions.pod:6350 ../src/guestfs-actions.pod:7855 +#: ../src/guestfs-actions.pod:8079 ../src/guestfs-actions.pod:8230 +#: ../src/guestfs-actions.pod:8735 ../src/guestfs-actions.pod:8860 +#: ../src/guestfs-actions.pod:9566 msgid "(Added in 0.3)" msgstr "(Додано у 0.3)" @@ -31411,8 +31430,8 @@ msgstr "" #: ../src/guestfs-actions.pod:5969 ../src/guestfs-actions.pod:6082 #: ../src/guestfs-actions.pod:6360 ../src/guestfs-actions.pod:6409 #: ../src/guestfs-actions.pod:6671 ../src/guestfs-actions.pod:6732 -#: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7881 -#: ../src/guestfs-actions.pod:8895 ../src/guestfs-actions.pod:9120 +#: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7888 +#: ../src/guestfs-actions.pod:8902 ../src/guestfs-actions.pod:9127 msgid "" "You may supply a list of optional arguments to this call. Use zero or more " "of the following pairs of parameters, and terminate the list with C<-1> on " @@ -31469,9 +31488,9 @@ msgstr "" #: ../src/guestfs-actions.pod:5537 ../src/guestfs-actions.pod:6623 #: ../src/guestfs-actions.pod:6644 ../src/guestfs-actions.pod:6971 #: ../src/guestfs-actions.pod:7209 ../src/guestfs-actions.pod:7403 -#: ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:9083 -#: ../src/guestfs-actions.pod:9570 ../src/guestfs-actions.pod:9583 -#: ../src/guestfs-actions.pod:9596 +#: ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:9090 +#: ../src/guestfs-actions.pod:9577 ../src/guestfs-actions.pod:9590 +#: ../src/guestfs-actions.pod:9603 msgid "On error this function returns -1." msgstr "У разі помилки цією функцією буде повернуто -1." @@ -31528,9 +31547,9 @@ msgstr "Це «варіант з va_list» L." #: ../src/guestfs-actions.pod:6711 ../src/guestfs-actions.pod:6723 #: ../src/guestfs-actions.pod:6762 ../src/guestfs-actions.pod:6773 #: ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:6855 -#: ../src/guestfs-actions.pod:7922 ../src/guestfs-actions.pod:7934 -#: ../src/guestfs-actions.pod:8997 ../src/guestfs-actions.pod:9008 -#: ../src/guestfs-actions.pod:9144 ../src/guestfs-actions.pod:9154 +#: ../src/guestfs-actions.pod:7929 ../src/guestfs-actions.pod:7941 +#: ../src/guestfs-actions.pod:9004 ../src/guestfs-actions.pod:9015 +#: ../src/guestfs-actions.pod:9151 ../src/guestfs-actions.pod:9161 msgid "See L." msgstr "Див. L." @@ -31952,11 +31971,11 @@ msgstr "" #: ../src/guestfs-actions.pod:5824 ../src/guestfs-actions.pod:6989 #: ../src/guestfs-actions.pod:7190 ../src/guestfs-actions.pod:7378 #: ../src/guestfs-actions.pod:7556 ../src/guestfs-actions.pod:7605 -#: ../src/guestfs-actions.pod:8374 ../src/guestfs-actions.pod:8390 -#: ../src/guestfs-actions.pod:8414 ../src/guestfs-actions.pod:8438 -#: ../src/guestfs-actions.pod:9299 ../src/guestfs-actions.pod:9318 -#: ../src/guestfs-actions.pod:9336 ../src/guestfs-actions.pod:9529 -#: ../src/guestfs-actions.pod:9904 +#: ../src/guestfs-actions.pod:8381 ../src/guestfs-actions.pod:8397 +#: ../src/guestfs-actions.pod:8421 ../src/guestfs-actions.pod:8445 +#: ../src/guestfs-actions.pod:9306 ../src/guestfs-actions.pod:9325 +#: ../src/guestfs-actions.pod:9343 ../src/guestfs-actions.pod:9536 +#: ../src/guestfs-actions.pod:9911 msgid "" "This function returns a string, or NULL on error. I." @@ -32089,13 +32108,13 @@ msgstr "" #: ../src/guestfs-actions.pod:5039 ../src/guestfs-actions.pod:5455 #: ../src/guestfs-actions.pod:6591 ../src/guestfs-actions.pod:7350 #: ../src/guestfs-actions.pod:7476 ../src/guestfs-actions.pod:7590 -#: ../src/guestfs-actions.pod:8454 ../src/guestfs-actions.pod:8538 -#: ../src/guestfs-actions.pod:8593 ../src/guestfs-actions.pod:8739 -#: ../src/guestfs-actions.pod:8763 ../src/guestfs-actions.pod:9403 -#: ../src/guestfs-actions.pod:9442 ../src/guestfs-actions.pod:9489 -#: ../src/guestfs-actions.pod:9719 ../src/guestfs-actions.pod:9738 -#: ../src/guestfs-actions.pod:9854 ../src/guestfs-actions.pod:9873 -#: ../src/guestfs-actions.pod:9919 ../src/guestfs-actions.pod:9938 +#: ../src/guestfs-actions.pod:8461 ../src/guestfs-actions.pod:8545 +#: ../src/guestfs-actions.pod:8600 ../src/guestfs-actions.pod:8746 +#: ../src/guestfs-actions.pod:8770 ../src/guestfs-actions.pod:9410 +#: ../src/guestfs-actions.pod:9449 ../src/guestfs-actions.pod:9496 +#: ../src/guestfs-actions.pod:9726 ../src/guestfs-actions.pod:9745 +#: ../src/guestfs-actions.pod:9861 ../src/guestfs-actions.pod:9880 +#: ../src/guestfs-actions.pod:9926 ../src/guestfs-actions.pod:9945 msgid "" "This function returns a NULL-terminated array of strings (like L), or NULL if there was an error. I, where " @@ -33089,7 +33108,7 @@ msgid "See also C." msgstr "Див. також C." #. type: textblock -#: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:9321 +#: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:9328 msgid "(Added in 1.0.75)" msgstr "(Додано у 1.0.75)" @@ -33126,8 +33145,8 @@ msgstr "" #: ../src/guestfs-actions.pod:4922 ../src/guestfs-actions.pod:4939 #: ../src/guestfs-actions.pod:5043 ../src/guestfs-actions.pod:5459 #: ../src/guestfs-actions.pod:5473 ../src/guestfs-actions.pod:7354 -#: ../src/guestfs-actions.pod:7368 ../src/guestfs-actions.pod:9493 -#: ../src/guestfs-actions.pod:9507 +#: ../src/guestfs-actions.pod:7368 ../src/guestfs-actions.pod:9500 +#: ../src/guestfs-actions.pod:9514 msgid "(Added in 0.4)" msgstr "(Додано у 0.4)" @@ -33166,7 +33185,7 @@ msgstr "" #: ../src/guestfs-actions.pod:1316 ../src/guestfs-actions.pod:2001 #: ../src/guestfs-actions.pod:3148 ../src/guestfs-actions.pod:4504 #: ../src/guestfs-actions.pod:4565 ../src/guestfs-actions.pod:4592 -#: ../src/guestfs-actions.pod:9177 +#: ../src/guestfs-actions.pod:9184 msgid "(Added in 1.0.2)" msgstr "(Додано у 1.0.2)" @@ -33203,8 +33222,8 @@ msgstr "" #: ../src/guestfs-actions.pod:1332 ../src/guestfs-actions.pod:6785 #: ../src/guestfs-actions.pod:6921 ../src/guestfs-actions.pod:6955 #: ../src/guestfs-actions.pod:6973 ../src/guestfs-actions.pod:7155 -#: ../src/guestfs-actions.pod:9044 ../src/guestfs-actions.pod:9058 -#: ../src/guestfs-actions.pod:9519 +#: ../src/guestfs-actions.pod:9051 ../src/guestfs-actions.pod:9065 +#: ../src/guestfs-actions.pod:9526 msgid "(Added in 1.3.2)" msgstr "(Додано у 1.3.2)" @@ -33390,7 +33409,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:1484 ../src/guestfs-actions.pod:1543 -#: ../src/guestfs-actions.pod:3134 ../src/guestfs-actions.pod:8180 +#: ../src/guestfs-actions.pod:3134 ../src/guestfs-actions.pod:8187 msgid "(Added in 1.13.15)" msgstr "(Додано у 1.13.15)" @@ -33620,9 +33639,9 @@ msgstr "" #: ../src/guestfs-actions.pod:1847 ../src/guestfs-actions.pod:1996 #: ../src/guestfs-actions.pod:2027 ../src/guestfs-actions.pod:2072 #: ../src/guestfs-actions.pod:2539 ../src/guestfs-actions.pod:2561 -#: ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:9172 -#: ../src/guestfs-actions.pod:9206 ../src/guestfs-actions.pod:9768 -#: ../src/guestfs-actions.pod:9791 ../src/guestfs-actions.pod:9816 +#: ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:9179 +#: ../src/guestfs-actions.pod:9213 ../src/guestfs-actions.pod:9775 +#: ../src/guestfs-actions.pod:9798 ../src/guestfs-actions.pod:9823 msgid "" "This long-running command can generate progress notification messages so " "that the caller can display a progress bar or indicator. To receive these " @@ -34019,8 +34038,8 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:1852 ../src/guestfs-actions.pod:5486 -#: ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:9407 -#: ../src/guestfs-actions.pod:9446 ../src/guestfs-actions.pod:9532 +#: ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:9414 +#: ../src/guestfs-actions.pod:9453 ../src/guestfs-actions.pod:9539 msgid "(Added in 1.0.87)" msgstr "(Додано у 1.0.87)" @@ -34160,9 +34179,9 @@ msgstr "" #: ../src/guestfs-actions.pod:2077 ../src/guestfs-actions.pod:3377 #: ../src/guestfs-actions.pod:3401 ../src/guestfs-actions.pod:3469 #: ../src/guestfs-actions.pod:5827 ../src/guestfs-actions.pod:6509 -#: ../src/guestfs-actions.pod:8746 ../src/guestfs-actions.pod:8770 -#: ../src/guestfs-actions.pod:9572 ../src/guestfs-actions.pod:9585 -#: ../src/guestfs-actions.pod:9598 +#: ../src/guestfs-actions.pod:8753 ../src/guestfs-actions.pod:8777 +#: ../src/guestfs-actions.pod:9579 ../src/guestfs-actions.pod:9592 +#: ../src/guestfs-actions.pod:9605 msgid "(Added in 1.0.54)" msgstr "(Додано у 1.0.54)" @@ -34273,7 +34292,7 @@ msgid "See also C, C." msgstr "Див. також C, C." #. type: textblock -#: ../src/guestfs-actions.pod:2032 ../src/guestfs-actions.pod:9211 +#: ../src/guestfs-actions.pod:2032 ../src/guestfs-actions.pod:9218 msgid "(Added in 1.5.17)" msgstr "(Додано у 1.5.17)" @@ -34462,7 +34481,7 @@ msgstr "Див. також C." #. type: textblock #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3159 -#: ../src/guestfs-actions.pod:8204 +#: ../src/guestfs-actions.pod:8211 msgid "(Added in 1.0.69)" msgstr "(Додано у 1.0.69)" @@ -34498,13 +34517,13 @@ msgstr "" #: ../src/guestfs-actions.pod:4982 ../src/guestfs-actions.pod:4995 #: ../src/guestfs-actions.pod:5009 ../src/guestfs-actions.pod:6303 #: ../src/guestfs-actions.pod:7559 ../src/guestfs-actions.pod:7608 -#: ../src/guestfs-actions.pod:8614 ../src/guestfs-actions.pod:8626 -#: ../src/guestfs-actions.pod:8639 ../src/guestfs-actions.pod:8652 -#: ../src/guestfs-actions.pod:8674 ../src/guestfs-actions.pod:8687 -#: ../src/guestfs-actions.pod:8700 ../src/guestfs-actions.pod:8713 -#: ../src/guestfs-actions.pod:9726 ../src/guestfs-actions.pod:9745 -#: ../src/guestfs-actions.pod:9861 ../src/guestfs-actions.pod:9880 -#: ../src/guestfs-actions.pod:9926 ../src/guestfs-actions.pod:9945 +#: ../src/guestfs-actions.pod:8621 ../src/guestfs-actions.pod:8633 +#: ../src/guestfs-actions.pod:8646 ../src/guestfs-actions.pod:8659 +#: ../src/guestfs-actions.pod:8681 ../src/guestfs-actions.pod:8694 +#: ../src/guestfs-actions.pod:8707 ../src/guestfs-actions.pod:8720 +#: ../src/guestfs-actions.pod:9733 ../src/guestfs-actions.pod:9752 +#: ../src/guestfs-actions.pod:9868 ../src/guestfs-actions.pod:9887 +#: ../src/guestfs-actions.pod:9933 ../src/guestfs-actions.pod:9952 msgid "(Added in 1.0.66)" msgstr "(Додано у 1.0.66)" @@ -35017,7 +35036,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:2721 ../src/guestfs-actions.pod:9773 +#: ../src/guestfs-actions.pod:2721 ../src/guestfs-actions.pod:9780 msgid "(Added in 1.0.16)" msgstr "(Додано у 1.0.16)" @@ -35130,10 +35149,10 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:2797 ../src/guestfs-actions.pod:7321 -#: ../src/guestfs-actions.pod:7800 ../src/guestfs-actions.pod:8358 -#: ../src/guestfs-actions.pod:8377 ../src/guestfs-actions.pod:8393 -#: ../src/guestfs-actions.pod:8417 ../src/guestfs-actions.pod:9358 -#: ../src/guestfs-actions.pod:9373 ../src/guestfs-actions.pod:9842 +#: ../src/guestfs-actions.pod:7800 ../src/guestfs-actions.pod:8365 +#: ../src/guestfs-actions.pod:8384 ../src/guestfs-actions.pod:8400 +#: ../src/guestfs-actions.pod:8424 ../src/guestfs-actions.pod:9365 +#: ../src/guestfs-actions.pod:9380 ../src/guestfs-actions.pod:9849 msgid "(Added in 1.0.26)" msgstr "(Додано у 1.0.26)" @@ -35160,7 +35179,7 @@ msgid "Return the current attach method. See C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2809 ../src/guestfs-actions.pod:7830 +#: ../src/guestfs-actions.pod:2809 ../src/guestfs-actions.pod:7837 msgid "(Added in 1.9.8)" msgstr "(Додано у 1.9.8)" @@ -35199,7 +35218,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:2831 ../src/guestfs-actions.pod:7871 +#: ../src/guestfs-actions.pod:2831 ../src/guestfs-actions.pod:7878 msgid "(Added in 1.0.72)" msgstr "(Додано у 1.0.72)" @@ -35236,7 +35255,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:2950 ../src/guestfs-actions.pod:2970 -#: ../src/guestfs-actions.pod:7910 ../src/guestfs-actions.pod:7949 +#: ../src/guestfs-actions.pod:7917 ../src/guestfs-actions.pod:7956 msgid "(Added in 1.17.31)" msgstr "(Додано у 1.17.31)" @@ -35292,7 +35311,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:2991 ../src/guestfs-actions.pod:3012 -#: ../src/guestfs-actions.pod:7974 ../src/guestfs-actions.pod:7993 +#: ../src/guestfs-actions.pod:7981 ../src/guestfs-actions.pod:8000 msgid "(Added in 1.0.15)" msgstr "(Додано у 1.0.15)" @@ -35352,8 +35371,8 @@ msgstr "" #: ../src/guestfs-actions.pod:6208 ../src/guestfs-actions.pod:6227 #: ../src/guestfs-actions.pod:6246 ../src/guestfs-actions.pod:6258 #: ../src/guestfs-actions.pod:6275 ../src/guestfs-actions.pod:6288 -#: ../src/guestfs-actions.pod:7546 ../src/guestfs-actions.pod:8036 -#: ../src/guestfs-actions.pod:8328 ../src/guestfs-actions.pod:9085 +#: ../src/guestfs-actions.pod:7546 ../src/guestfs-actions.pod:8043 +#: ../src/guestfs-actions.pod:8335 ../src/guestfs-actions.pod:9092 msgid "(Added in 1.0.55)" msgstr "(Додано у 1.0.55)" @@ -35375,7 +35394,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:8055 +#: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:8062 msgid "(Added in 1.5.4)" msgstr "(Додано у 1.5.4)" @@ -35421,8 +35440,8 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:3068 ../src/guestfs-actions.pod:8093 -#: ../src/guestfs-actions.pod:9657 +#: ../src/guestfs-actions.pod:3068 ../src/guestfs-actions.pod:8100 +#: ../src/guestfs-actions.pod:9664 msgid "(Added in 1.11.18)" msgstr "(Додано у 1.11.18)" @@ -35466,7 +35485,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:8121 +#: ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:8128 msgid "(Added in 1.0.6)" msgstr "(Додано у 1.0.6)" @@ -35491,9 +35510,9 @@ msgstr "" #: ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:4750 #: ../src/guestfs-actions.pod:5110 ../src/guestfs-actions.pod:5521 #: ../src/guestfs-actions.pod:5784 ../src/guestfs-actions.pod:7251 -#: ../src/guestfs-actions.pod:7594 ../src/guestfs-actions.pod:8145 -#: ../src/guestfs-actions.pod:8866 ../src/guestfs-actions.pod:8886 -#: ../src/guestfs-actions.pod:9242 +#: ../src/guestfs-actions.pod:7594 ../src/guestfs-actions.pod:8152 +#: ../src/guestfs-actions.pod:8873 ../src/guestfs-actions.pod:8893 +#: ../src/guestfs-actions.pod:9249 msgid "(Added in 1.0.77)" msgstr "(Додано у 1.0.77)" @@ -35523,7 +35542,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:3123 ../src/guestfs-actions.pod:3197 -#: ../src/guestfs-actions.pod:8164 ../src/guestfs-actions.pod:8238 +#: ../src/guestfs-actions.pod:8171 ../src/guestfs-actions.pod:8245 msgid "(Added in 1.0.67)" msgstr "(Додано у 1.0.67)" @@ -35692,7 +35711,7 @@ msgstr "Див. також C, C, L. I, or NULL if there was an " "error. I after use>." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:5080 ../src/guestfs-actions.pod:8509 -#: ../src/guestfs-actions.pod:8527 ../src/guestfs-actions.pod:9030 +#: ../src/guestfs-actions.pod:5080 ../src/guestfs-actions.pod:8516 +#: ../src/guestfs-actions.pod:8534 ../src/guestfs-actions.pod:9037 msgid "(Added in 0.9.2)" msgstr "(Додано у 0.9.2)" @@ -38010,7 +38029,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:5299 ../src/guestfs-actions.pod:9821 +#: ../src/guestfs-actions.pod:5299 ../src/guestfs-actions.pod:9828 msgid "(Added in 1.17.18)" msgstr "(Додано у 1.17.18)" @@ -38124,7 +38143,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:5395 ../src/guestfs-actions.pod:7308 -#: ../src/guestfs-actions.pod:9461 +#: ../src/guestfs-actions.pod:9468 msgid "(Added in 1.0.13)" msgstr "(Додано у 1.0.13)" @@ -38150,7 +38169,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:5408 ../src/guestfs-actions.pod:9474 +#: ../src/guestfs-actions.pod:5408 ../src/guestfs-actions.pod:9481 msgid "(Added in 1.0.83)" msgstr "(Додано у 1.0.83)" @@ -39484,7 +39503,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:6445 ../src/guestfs-actions.pod:6494 -#: ../src/guestfs-actions.pod:9134 +#: ../src/guestfs-actions.pod:9141 msgid "(Added in 1.17.22)" msgstr "(Додано у 1.17.22)" @@ -39850,7 +39869,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:6661 ../src/guestfs-actions.pod:6699 -#: ../src/guestfs-actions.pod:6751 ../src/guestfs-actions.pod:8015 +#: ../src/guestfs-actions.pod:6751 ../src/guestfs-actions.pod:8022 msgid "(Added in 1.17.9)" msgstr "(Додано у 1.17.9)" @@ -40202,7 +40221,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:6876 ../src/guestfs-actions.pod:7335 #: ../src/guestfs-actions.pod:7408 ../src/guestfs-actions.pod:7676 -#: ../src/guestfs-actions.pod:9637 +#: ../src/guestfs-actions.pod:9644 msgid "(Added in 1.3.14)" msgstr "(Додано у 1.3.14)" @@ -41333,12 +41352,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:7832 +#: ../src/guestfs-actions.pod:7839 msgid "guestfs_set_autosync" msgstr "guestfs_set_autosync" #. type: verbatim -#: ../src/guestfs-actions.pod:7834 +#: ../src/guestfs-actions.pod:7841 #, no-wrap msgid "" " int\n" @@ -41352,12 +41371,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:7850 +#: ../src/guestfs-actions.pod:7857 msgid "guestfs_set_direct" msgstr "guestfs_set_direct" #. type: verbatim -#: ../src/guestfs-actions.pod:7852 +#: ../src/guestfs-actions.pod:7859 #, no-wrap msgid "" " int\n" @@ -41371,7 +41390,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7860 +#: ../src/guestfs-actions.pod:7867 msgid "" "One consequence of this is that log messages aren't caught by the library " "and handled by C, but go straight to " @@ -41379,12 +41398,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7873 +#: ../src/guestfs-actions.pod:7880 msgid "guestfs_set_e2attrs" msgstr "guestfs_set_e2attrs" #. type: verbatim -#: ../src/guestfs-actions.pod:7875 +#: ../src/guestfs-actions.pod:7882 #, no-wrap msgid "" " int\n" @@ -41402,7 +41421,7 @@ msgstr "" "\n" #. type: verbatim -#: ../src/guestfs-actions.pod:7886 +#: ../src/guestfs-actions.pod:7893 #, no-wrap msgid "" " GUESTFS_SET_E2ATTRS_CLEAR, int clear,\n" @@ -41412,7 +41431,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7891 +#: ../src/guestfs-actions.pod:7898 msgid "" "C is a string of characters representing file attributes. See " "C for a list of possible attributes. Not all " @@ -41420,12 +41439,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7912 +#: ../src/guestfs-actions.pod:7919 msgid "guestfs_set_e2attrs_va" msgstr "guestfs_set_e2attrs_va" #. type: verbatim -#: ../src/guestfs-actions.pod:7914 +#: ../src/guestfs-actions.pod:7921 #, no-wrap msgid "" " int\n" @@ -41443,17 +41462,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7920 +#: ../src/guestfs-actions.pod:7927 msgid "This is the \"va_list variant\" of L." msgstr "Це «варіант з va_list» L." #. type: =head2 -#: ../src/guestfs-actions.pod:7924 +#: ../src/guestfs-actions.pod:7931 msgid "guestfs_set_e2attrs_argv" msgstr "guestfs_set_e2attrs_argv" #. type: verbatim -#: ../src/guestfs-actions.pod:7926 +#: ../src/guestfs-actions.pod:7933 #, no-wrap msgid "" " int\n" @@ -41471,17 +41490,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7932 +#: ../src/guestfs-actions.pod:7939 msgid "This is the \"argv variant\" of L." msgstr "Це «варіант з argv» L." #. type: =head2 -#: ../src/guestfs-actions.pod:7936 +#: ../src/guestfs-actions.pod:7943 msgid "guestfs_set_e2generation" msgstr "guestfs_set_e2generation" #. type: verbatim -#: ../src/guestfs-actions.pod:7938 +#: ../src/guestfs-actions.pod:7945 #, no-wrap msgid "" " int\n" @@ -41497,17 +41516,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7945 +#: ../src/guestfs-actions.pod:7952 msgid "See C." msgstr "Див. C." #. type: =head2 -#: ../src/guestfs-actions.pod:7951 +#: ../src/guestfs-actions.pod:7958 msgid "guestfs_set_e2label" msgstr "guestfs_set_e2label" #. type: verbatim -#: ../src/guestfs-actions.pod:7953 +#: ../src/guestfs-actions.pod:7960 #, no-wrap msgid "" " int\n" @@ -41523,26 +41542,26 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7958 +#: ../src/guestfs-actions.pod:7965 msgid "" "I In new code, use the L " "call instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:7969 +#: ../src/guestfs-actions.pod:7976 msgid "" "You can use either C or C to return " "the existing label on a filesystem." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7976 +#: ../src/guestfs-actions.pod:7983 msgid "guestfs_set_e2uuid" msgstr "guestfs_set_e2uuid" #. type: verbatim -#: ../src/guestfs-actions.pod:7978 +#: ../src/guestfs-actions.pod:7985 #, no-wrap msgid "" " int\n" @@ -41558,19 +41577,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:7988 +#: ../src/guestfs-actions.pod:7995 msgid "" "You can use either C or C to return " "the existing UUID of a filesystem." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:7995 +#: ../src/guestfs-actions.pod:8002 msgid "guestfs_set_label" msgstr "guestfs_set_label" #. type: verbatim -#: ../src/guestfs-actions.pod:7997 +#: ../src/guestfs-actions.pod:8004 #, no-wrap msgid "" " int\n" @@ -41586,17 +41605,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8011 +#: ../src/guestfs-actions.pod:8018 msgid "To read the label on a filesystem, call C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8017 +#: ../src/guestfs-actions.pod:8024 msgid "guestfs_set_memsize" msgstr "guestfs_set_memsize" #. type: verbatim -#: ../src/guestfs-actions.pod:8019 +#: ../src/guestfs-actions.pod:8026 #, no-wrap msgid "" " int\n" @@ -41610,19 +41629,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8023 +#: ../src/guestfs-actions.pod:8030 msgid "" "This sets the memory size in megabytes allocated to the qemu subprocess. " "This only has any effect if called before C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8038 +#: ../src/guestfs-actions.pod:8045 msgid "guestfs_set_network" msgstr "guestfs_set_network" #. type: verbatim -#: ../src/guestfs-actions.pod:8040 +#: ../src/guestfs-actions.pod:8047 #, no-wrap msgid "" " int\n" @@ -41636,19 +41655,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8050 +#: ../src/guestfs-actions.pod:8057 msgid "" "You must call this before calling C, otherwise it has no " "effect." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8057 +#: ../src/guestfs-actions.pod:8064 msgid "guestfs_set_path" msgstr "guestfs_set_path" #. type: verbatim -#: ../src/guestfs-actions.pod:8059 +#: ../src/guestfs-actions.pod:8066 #, no-wrap msgid "" " int\n" @@ -41662,12 +41681,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8074 +#: ../src/guestfs-actions.pod:8081 msgid "guestfs_set_pgroup" msgstr "guestfs_set_pgroup" #. type: verbatim -#: ../src/guestfs-actions.pod:8076 +#: ../src/guestfs-actions.pod:8083 #, no-wrap msgid "" " int\n" @@ -41681,7 +41700,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8086 +#: ../src/guestfs-actions.pod:8093 msgid "" "The default for this flag is false, because usually you want C<^C> to kill " "the subprocess. Guestfish sets this flag to true when used interactively, " @@ -41690,12 +41709,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8095 +#: ../src/guestfs-actions.pod:8102 msgid "guestfs_set_qemu" msgstr "guestfs_set_qemu" #. type: verbatim -#: ../src/guestfs-actions.pod:8097 +#: ../src/guestfs-actions.pod:8104 #, no-wrap msgid "" " int\n" @@ -41709,12 +41728,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8123 +#: ../src/guestfs-actions.pod:8130 msgid "guestfs_set_recovery_proc" msgstr "guestfs_set_recovery_proc" #. type: verbatim -#: ../src/guestfs-actions.pod:8125 +#: ../src/guestfs-actions.pod:8132 #, no-wrap msgid "" " int\n" @@ -41728,7 +41747,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8129 +#: ../src/guestfs-actions.pod:8136 msgid "" "If this is called with the parameter C then C does " "not create a recovery process. The purpose of the recovery process is to " @@ -41737,19 +41756,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8134 +#: ../src/guestfs-actions.pod:8141 msgid "" "This only has any effect if called before C, and the default " "is true." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8147 +#: ../src/guestfs-actions.pod:8154 msgid "guestfs_set_selinux" msgstr "guestfs_set_selinux" #. type: verbatim -#: ../src/guestfs-actions.pod:8149 +#: ../src/guestfs-actions.pod:8156 #, no-wrap msgid "" " int\n" @@ -41763,12 +41782,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8166 +#: ../src/guestfs-actions.pod:8173 msgid "guestfs_set_smp" msgstr "guestfs_set_smp" #. type: verbatim -#: ../src/guestfs-actions.pod:8168 +#: ../src/guestfs-actions.pod:8175 #, no-wrap msgid "" " int\n" @@ -41782,17 +41801,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8176 +#: ../src/guestfs-actions.pod:8183 msgid "This function must be called before C." msgstr "У попередніх версіях ця функція викликалася C." #. type: =head2 -#: ../src/guestfs-actions.pod:8182 +#: ../src/guestfs-actions.pod:8189 msgid "guestfs_set_trace" msgstr "guestfs_set_trace" #. type: verbatim -#: ../src/guestfs-actions.pod:8184 +#: ../src/guestfs-actions.pod:8191 #, no-wrap msgid "" " int\n" @@ -41806,19 +41825,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8198 +#: ../src/guestfs-actions.pod:8205 msgid "" "Trace messages are normally sent to C, unless you register a " "callback to send them somewhere else (see C)." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8206 +#: ../src/guestfs-actions.pod:8213 msgid "guestfs_set_verbose" msgstr "guestfs_set_verbose" #. type: verbatim -#: ../src/guestfs-actions.pod:8208 +#: ../src/guestfs-actions.pod:8215 #, no-wrap msgid "" " int\n" @@ -41832,19 +41851,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8217 +#: ../src/guestfs-actions.pod:8224 msgid "" "Verbose messages are normally sent to C, unless you register a " "callback to send them somewhere else (see C)." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8225 +#: ../src/guestfs-actions.pod:8232 msgid "guestfs_setcon" msgstr "guestfs_setcon" #. type: verbatim -#: ../src/guestfs-actions.pod:8227 +#: ../src/guestfs-actions.pod:8234 #, no-wrap msgid "" " int\n" @@ -41858,12 +41877,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8240 +#: ../src/guestfs-actions.pod:8247 msgid "guestfs_setxattr" msgstr "guestfs_setxattr" #. type: verbatim -#: ../src/guestfs-actions.pod:8242 +#: ../src/guestfs-actions.pod:8249 #, no-wrap msgid "" " int\n" @@ -41883,17 +41902,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8253 +#: ../src/guestfs-actions.pod:8260 msgid "See also: C, L." msgstr "Див. також C, L." #. type: =head2 -#: ../src/guestfs-actions.pod:8259 +#: ../src/guestfs-actions.pod:8266 msgid "guestfs_sfdisk" msgstr "guestfs_sfdisk" #. type: verbatim -#: ../src/guestfs-actions.pod:8261 +#: ../src/guestfs-actions.pod:8268 #, no-wrap msgid "" " int\n" @@ -41915,27 +41934,27 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8269 ../src/guestfs-actions.pod:8310 -#: ../src/guestfs-actions.pod:8341 +#: ../src/guestfs-actions.pod:8276 ../src/guestfs-actions.pod:8317 +#: ../src/guestfs-actions.pod:8348 msgid "" "I In new code, use the L " "call instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8296 +#: ../src/guestfs-actions.pod:8303 msgid "" "See also: C, C, C" msgstr "" "Див. також C, C, C" #. type: =head2 -#: ../src/guestfs-actions.pod:8303 +#: ../src/guestfs-actions.pod:8310 msgid "guestfs_sfdiskM" msgstr "guestfs_sfdiskM" #. type: verbatim -#: ../src/guestfs-actions.pod:8305 +#: ../src/guestfs-actions.pod:8312 #, no-wrap msgid "" " int\n" @@ -41951,7 +41970,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8317 +#: ../src/guestfs-actions.pod:8324 msgid "" "This is a simplified interface to the C command, where " "partition sizes are specified in megabytes only (rounded to the nearest " @@ -41960,7 +41979,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8323 +#: ../src/guestfs-actions.pod:8330 msgid "" "See also: C, the L manpage and " "C" @@ -41969,12 +41988,12 @@ msgstr "" "C" #. type: =head2 -#: ../src/guestfs-actions.pod:8330 +#: ../src/guestfs-actions.pod:8337 msgid "guestfs_sfdisk_N" msgstr "guestfs_sfdisk_N" #. type: verbatim -#: ../src/guestfs-actions.pod:8332 +#: ../src/guestfs-actions.pod:8339 #, no-wrap msgid "" " int\n" @@ -41998,24 +42017,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8351 +#: ../src/guestfs-actions.pod:8358 msgid "" "For other parameters, see C. You should usually pass C<0> " "for the cyls/heads/sectors parameters." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8354 +#: ../src/guestfs-actions.pod:8361 msgid "See also: C" msgstr "Див. також C" #. type: =head2 -#: ../src/guestfs-actions.pod:8360 +#: ../src/guestfs-actions.pod:8367 msgid "guestfs_sfdisk_disk_geometry" msgstr "guestfs_sfdisk_disk_geometry" #. type: verbatim -#: ../src/guestfs-actions.pod:8362 +#: ../src/guestfs-actions.pod:8369 #, no-wrap msgid "" " char *\n" @@ -42029,7 +42048,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8366 +#: ../src/guestfs-actions.pod:8373 msgid "" "This displays the disk geometry of C read from the partition table. " "Especially in the case where the underlying block device has been resized, " @@ -42038,12 +42057,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8379 +#: ../src/guestfs-actions.pod:8386 msgid "guestfs_sfdisk_kernel_geometry" msgstr "guestfs_sfdisk_kernel_geometry" #. type: verbatim -#: ../src/guestfs-actions.pod:8381 +#: ../src/guestfs-actions.pod:8388 #, no-wrap msgid "" " char *\n" @@ -42057,12 +42076,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8395 +#: ../src/guestfs-actions.pod:8402 msgid "guestfs_sfdisk_l" msgstr "guestfs_sfdisk_l" #. type: verbatim -#: ../src/guestfs-actions.pod:8397 +#: ../src/guestfs-actions.pod:8404 #, no-wrap msgid "" " char *\n" @@ -42076,24 +42095,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8401 +#: ../src/guestfs-actions.pod:8408 msgid "" "I In new code, use the L " "call instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8412 +#: ../src/guestfs-actions.pod:8419 msgid "See also: C" msgstr "Див. також C" #. type: =head2 -#: ../src/guestfs-actions.pod:8419 +#: ../src/guestfs-actions.pod:8426 msgid "guestfs_sh" msgstr "guestfs_sh" #. type: verbatim -#: ../src/guestfs-actions.pod:8421 +#: ../src/guestfs-actions.pod:8428 #, no-wrap msgid "" " char *\n" @@ -42107,22 +42126,22 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8428 +#: ../src/guestfs-actions.pod:8435 msgid "This is like C, but passes the command to:" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8436 +#: ../src/guestfs-actions.pod:8443 msgid "All the provisos about C apply to this call." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8443 +#: ../src/guestfs-actions.pod:8450 msgid "guestfs_sh_lines" msgstr "guestfs_sh_lines" #. type: verbatim -#: ../src/guestfs-actions.pod:8445 +#: ../src/guestfs-actions.pod:8452 #, no-wrap msgid "" " char **\n" @@ -42136,24 +42155,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8449 +#: ../src/guestfs-actions.pod:8456 msgid "" "This is the same as C, but splits the result into a list of " "lines." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8452 +#: ../src/guestfs-actions.pod:8459 msgid "See also: C" msgstr "Див. також C" #. type: =head2 -#: ../src/guestfs-actions.pod:8460 +#: ../src/guestfs-actions.pod:8467 msgid "guestfs_shutdown" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:8462 +#: ../src/guestfs-actions.pod:8469 #, no-wrap msgid "" " int\n" @@ -42162,7 +42181,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8465 +#: ../src/guestfs-actions.pod:8472 msgid "" "This is the opposite of C. It performs an orderly shutdown " "of the backend process(es). If the autosync flag is set (which is the " @@ -42170,26 +42189,26 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8475 +#: ../src/guestfs-actions.pod:8482 msgid "" "This call does I close or free up the handle. You still need to call " "C afterwards." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8478 +#: ../src/guestfs-actions.pod:8485 msgid "" "C will call this if you don't do it explicitly, but note that " "any errors are ignored in that case." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8483 +#: ../src/guestfs-actions.pod:8490 msgid "guestfs_sleep" msgstr "guestfs_sleep" #. type: verbatim -#: ../src/guestfs-actions.pod:8485 +#: ../src/guestfs-actions.pod:8492 #, no-wrap msgid "" " int\n" @@ -42203,17 +42222,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8493 +#: ../src/guestfs-actions.pod:8500 msgid "(Added in 1.0.41)" msgstr "(Додано у 1.0.41)" #. type: =head2 -#: ../src/guestfs-actions.pod:8495 ../src/guestfs-structs.pod:109 +#: ../src/guestfs-actions.pod:8502 ../src/guestfs-structs.pod:109 msgid "guestfs_stat" msgstr "guestfs_stat" #. type: verbatim -#: ../src/guestfs-actions.pod:8497 +#: ../src/guestfs-actions.pod:8504 #, no-wrap msgid "" " struct guestfs_stat *\n" @@ -42227,12 +42246,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8511 ../src/guestfs-structs.pod:135 +#: ../src/guestfs-actions.pod:8518 ../src/guestfs-structs.pod:135 msgid "guestfs_statvfs" msgstr "guestfs_statvfs" #. type: verbatim -#: ../src/guestfs-actions.pod:8513 +#: ../src/guestfs-actions.pod:8520 #, no-wrap msgid "" " struct guestfs_statvfs *\n" @@ -42246,19 +42265,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8523 +#: ../src/guestfs-actions.pod:8530 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8529 +#: ../src/guestfs-actions.pod:8536 msgid "guestfs_strings" msgstr "guestfs_strings" #. type: verbatim -#: ../src/guestfs-actions.pod:8531 +#: ../src/guestfs-actions.pod:8538 #, no-wrap msgid "" " char **\n" @@ -42272,12 +42291,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8547 +#: ../src/guestfs-actions.pod:8554 msgid "guestfs_strings_e" msgstr "guestfs_strings_e" #. type: verbatim -#: ../src/guestfs-actions.pod:8549 +#: ../src/guestfs-actions.pod:8556 #, no-wrap msgid "" " char **\n" @@ -42293,26 +42312,26 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8554 +#: ../src/guestfs-actions.pod:8561 msgid "" "This is like the C command, but allows you to specify the " "encoding of strings that are looked for in the source file C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8564 +#: ../src/guestfs-actions.pod:8571 msgid "" "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of " "ISO-8859-X (this is what C uses)." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8602 +#: ../src/guestfs-actions.pod:8609 msgid "guestfs_swapoff_device" msgstr "guestfs_swapoff_device" #. type: verbatim -#: ../src/guestfs-actions.pod:8604 +#: ../src/guestfs-actions.pod:8611 #, no-wrap msgid "" " int\n" @@ -42326,19 +42345,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8608 +#: ../src/guestfs-actions.pod:8615 msgid "" "This command disables the libguestfs appliance swap device or partition " "named C. See C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8616 +#: ../src/guestfs-actions.pod:8623 msgid "guestfs_swapoff_file" msgstr "guestfs_swapoff_file" #. type: verbatim -#: ../src/guestfs-actions.pod:8618 +#: ../src/guestfs-actions.pod:8625 #, no-wrap msgid "" " int\n" @@ -42352,12 +42371,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8628 +#: ../src/guestfs-actions.pod:8635 msgid "guestfs_swapoff_label" msgstr "guestfs_swapoff_label" #. type: verbatim -#: ../src/guestfs-actions.pod:8630 +#: ../src/guestfs-actions.pod:8637 #, no-wrap msgid "" " int\n" @@ -42371,12 +42390,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8641 +#: ../src/guestfs-actions.pod:8648 msgid "guestfs_swapoff_uuid" msgstr "guestfs_swapoff_uuid" #. type: verbatim -#: ../src/guestfs-actions.pod:8643 +#: ../src/guestfs-actions.pod:8650 #, no-wrap msgid "" " int\n" @@ -42390,12 +42409,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8654 +#: ../src/guestfs-actions.pod:8661 msgid "guestfs_swapon_device" msgstr "guestfs_swapon_device" #. type: verbatim -#: ../src/guestfs-actions.pod:8656 +#: ../src/guestfs-actions.pod:8663 #, no-wrap msgid "" " int\n" @@ -42409,7 +42428,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8660 +#: ../src/guestfs-actions.pod:8667 msgid "" "This command enables the libguestfs appliance to use the swap device or " "partition named C. The increased memory is made available for all " @@ -42417,12 +42436,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8676 +#: ../src/guestfs-actions.pod:8683 msgid "guestfs_swapon_file" msgstr "guestfs_swapon_file" #. type: verbatim -#: ../src/guestfs-actions.pod:8678 +#: ../src/guestfs-actions.pod:8685 #, no-wrap msgid "" " int\n" @@ -42436,19 +42455,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8682 +#: ../src/guestfs-actions.pod:8689 msgid "" "This command enables swap to a file. See C for other " "notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8689 +#: ../src/guestfs-actions.pod:8696 msgid "guestfs_swapon_label" msgstr "guestfs_swapon_label" #. type: verbatim -#: ../src/guestfs-actions.pod:8691 +#: ../src/guestfs-actions.pod:8698 #, no-wrap msgid "" " int\n" @@ -42462,19 +42481,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8695 +#: ../src/guestfs-actions.pod:8702 msgid "" "This command enables swap to a labeled swap partition. See " "C for other notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8702 +#: ../src/guestfs-actions.pod:8709 msgid "guestfs_swapon_uuid" msgstr "guestfs_swapon_uuid" #. type: verbatim -#: ../src/guestfs-actions.pod:8704 +#: ../src/guestfs-actions.pod:8711 #, no-wrap msgid "" " int\n" @@ -42488,19 +42507,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8708 +#: ../src/guestfs-actions.pod:8715 msgid "" "This command enables swap to a swap partition with the given UUID. See " "C for other notes." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8715 +#: ../src/guestfs-actions.pod:8722 msgid "guestfs_sync" msgstr "guestfs_sync" #. type: verbatim -#: ../src/guestfs-actions.pod:8717 +#: ../src/guestfs-actions.pod:8724 #, no-wrap msgid "" " int\n" @@ -42512,12 +42531,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8730 +#: ../src/guestfs-actions.pod:8737 msgid "guestfs_tail" msgstr "guestfs_tail" #. type: verbatim -#: ../src/guestfs-actions.pod:8732 +#: ../src/guestfs-actions.pod:8739 #, no-wrap msgid "" " char **\n" @@ -42531,12 +42550,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8748 +#: ../src/guestfs-actions.pod:8755 msgid "guestfs_tail_n" msgstr "guestfs_tail_n" #. type: verbatim -#: ../src/guestfs-actions.pod:8750 +#: ../src/guestfs-actions.pod:8757 #, no-wrap msgid "" " char **\n" @@ -42552,12 +42571,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8772 +#: ../src/guestfs-actions.pod:8779 msgid "guestfs_tar_in" msgstr "guestfs_tar_in" #. type: verbatim -#: ../src/guestfs-actions.pod:8774 +#: ../src/guestfs-actions.pod:8781 #, no-wrap msgid "" " int\n" @@ -42573,24 +42592,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8782 +#: ../src/guestfs-actions.pod:8789 msgid "" "To upload a compressed tarball, use C or C." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:8787 ../src/guestfs-actions.pod:8804 -#: ../src/guestfs-actions.pod:8820 ../src/guestfs-actions.pod:8836 +#: ../src/guestfs-actions.pod:8794 ../src/guestfs-actions.pod:8811 +#: ../src/guestfs-actions.pod:8827 ../src/guestfs-actions.pod:8843 msgid "(Added in 1.0.3)" msgstr "(Додано у 1.0.3)" #. type: =head2 -#: ../src/guestfs-actions.pod:8789 +#: ../src/guestfs-actions.pod:8796 msgid "guestfs_tar_out" msgstr "guestfs_tar_out" #. type: verbatim -#: ../src/guestfs-actions.pod:8791 +#: ../src/guestfs-actions.pod:8798 #, no-wrap msgid "" " int\n" @@ -42606,19 +42625,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8799 +#: ../src/guestfs-actions.pod:8806 msgid "" "To download a compressed tarball, use C or " "C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8806 +#: ../src/guestfs-actions.pod:8813 msgid "guestfs_tgz_in" msgstr "guestfs_tgz_in" #. type: verbatim -#: ../src/guestfs-actions.pod:8808 +#: ../src/guestfs-actions.pod:8815 #, no-wrap msgid "" " int\n" @@ -42634,17 +42653,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8816 +#: ../src/guestfs-actions.pod:8823 msgid "To upload an uncompressed tarball, use C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8822 +#: ../src/guestfs-actions.pod:8829 msgid "guestfs_tgz_out" msgstr "guestfs_tgz_out" #. type: verbatim -#: ../src/guestfs-actions.pod:8824 +#: ../src/guestfs-actions.pod:8831 #, no-wrap msgid "" " int\n" @@ -42660,17 +42679,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8832 +#: ../src/guestfs-actions.pod:8839 msgid "To download an uncompressed tarball, use C." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8838 +#: ../src/guestfs-actions.pod:8845 msgid "guestfs_touch" msgstr "guestfs_touch" #. type: verbatim -#: ../src/guestfs-actions.pod:8840 +#: ../src/guestfs-actions.pod:8847 #, no-wrap msgid "" " int\n" @@ -42684,12 +42703,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8855 +#: ../src/guestfs-actions.pod:8862 msgid "guestfs_truncate" msgstr "guestfs_truncate" #. type: verbatim -#: ../src/guestfs-actions.pod:8857 +#: ../src/guestfs-actions.pod:8864 #, no-wrap msgid "" " int\n" @@ -42703,12 +42722,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:8868 +#: ../src/guestfs-actions.pod:8875 msgid "guestfs_truncate_size" msgstr "guestfs_truncate_size" #. type: verbatim -#: ../src/guestfs-actions.pod:8870 +#: ../src/guestfs-actions.pod:8877 #, no-wrap msgid "" " int\n" @@ -42724,7 +42743,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8878 +#: ../src/guestfs-actions.pod:8885 msgid "" "If the current file size is less than C then the file is extended to " "the required size with zero bytes. This creates a sparse file (ie. disk " @@ -42733,12 +42752,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8888 +#: ../src/guestfs-actions.pod:8895 msgid "guestfs_tune2fs" msgstr "guestfs_tune2fs" #. type: verbatim -#: ../src/guestfs-actions.pod:8890 +#: ../src/guestfs-actions.pod:8897 #, no-wrap msgid "" " int\n" @@ -42754,7 +42773,7 @@ msgstr "" "\n" #. type: verbatim -#: ../src/guestfs-actions.pod:8900 +#: ../src/guestfs-actions.pod:8907 #, no-wrap msgid "" " GUESTFS_TUNE2FS_FORCE, int force,\n" @@ -42782,7 +42801,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8980 +#: ../src/guestfs-actions.pod:8987 msgid "" "To get the current values of filesystem parameters, see " "C. For precise details of how tune2fs works, see the " @@ -42790,12 +42809,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:8988 +#: ../src/guestfs-actions.pod:8995 msgid "guestfs_tune2fs_va" msgstr "guestfs_tune2fs_va" #. type: verbatim -#: ../src/guestfs-actions.pod:8990 +#: ../src/guestfs-actions.pod:8997 #, no-wrap msgid "" " int\n" @@ -42811,17 +42830,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:8995 +#: ../src/guestfs-actions.pod:9002 msgid "This is the \"va_list variant\" of L." msgstr "Це «варіант з va_list» L." #. type: =head2 -#: ../src/guestfs-actions.pod:8999 +#: ../src/guestfs-actions.pod:9006 msgid "guestfs_tune2fs_argv" msgstr "guestfs_tune2fs_argv" #. type: verbatim -#: ../src/guestfs-actions.pod:9001 +#: ../src/guestfs-actions.pod:9008 #, no-wrap msgid "" " int\n" @@ -42837,17 +42856,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9006 +#: ../src/guestfs-actions.pod:9013 msgid "This is the \"argv variant\" of L." msgstr "Це «варіант з argv» L." #. type: =head2 -#: ../src/guestfs-actions.pod:9010 +#: ../src/guestfs-actions.pod:9017 msgid "guestfs_tune2fs_l" msgstr "guestfs_tune2fs_l" #. type: verbatim -#: ../src/guestfs-actions.pod:9012 +#: ../src/guestfs-actions.pod:9019 #, no-wrap msgid "" " char **\n" @@ -42861,12 +42880,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9032 +#: ../src/guestfs-actions.pod:9039 msgid "guestfs_txz_in" msgstr "guestfs_txz_in" #. type: verbatim -#: ../src/guestfs-actions.pod:9034 +#: ../src/guestfs-actions.pod:9041 #, no-wrap msgid "" " int\n" @@ -42882,12 +42901,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9046 +#: ../src/guestfs-actions.pod:9053 msgid "guestfs_txz_out" msgstr "guestfs_txz_out" #. type: verbatim -#: ../src/guestfs-actions.pod:9048 +#: ../src/guestfs-actions.pod:9055 #, no-wrap msgid "" " int\n" @@ -42903,12 +42922,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9060 +#: ../src/guestfs-actions.pod:9067 msgid "guestfs_umask" msgstr "guestfs_umask" #. type: verbatim -#: ../src/guestfs-actions.pod:9062 +#: ../src/guestfs-actions.pod:9069 #, no-wrap msgid "" " int\n" @@ -42922,7 +42941,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9078 +#: ../src/guestfs-actions.pod:9085 msgid "" "See also C, L, C, " "C." @@ -42931,12 +42950,12 @@ msgstr "" "C." #. type: =head2 -#: ../src/guestfs-actions.pod:9087 +#: ../src/guestfs-actions.pod:9094 msgid "guestfs_umount" msgstr "guestfs_umount" #. type: verbatim -#: ../src/guestfs-actions.pod:9089 +#: ../src/guestfs-actions.pod:9096 #, no-wrap msgid "" " int\n" @@ -42950,12 +42969,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9101 +#: ../src/guestfs-actions.pod:9108 msgid "guestfs_umount_all" msgstr "guestfs_umount_all" #. type: verbatim -#: ../src/guestfs-actions.pod:9103 +#: ../src/guestfs-actions.pod:9110 #, no-wrap msgid "" " int\n" @@ -42967,12 +42986,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9114 +#: ../src/guestfs-actions.pod:9121 msgid "guestfs_umount_local" msgstr "guestfs_umount_local" #. type: verbatim -#: ../src/guestfs-actions.pod:9116 +#: ../src/guestfs-actions.pod:9123 #, no-wrap msgid "" " int\n" @@ -42986,7 +43005,7 @@ msgstr "" "\n" #. type: verbatim -#: ../src/guestfs-actions.pod:9125 +#: ../src/guestfs-actions.pod:9132 #, no-wrap msgid "" " GUESTFS_UMOUNT_LOCAL_RETRY, int retry,\n" @@ -42996,12 +43015,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9136 +#: ../src/guestfs-actions.pod:9143 msgid "guestfs_umount_local_va" msgstr "guestfs_umount_local_va" #. type: verbatim -#: ../src/guestfs-actions.pod:9138 +#: ../src/guestfs-actions.pod:9145 #, no-wrap msgid "" " int\n" @@ -43015,17 +43034,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9142 +#: ../src/guestfs-actions.pod:9149 msgid "This is the \"va_list variant\" of L." msgstr "Це «варіант з va_list» L." #. type: =head2 -#: ../src/guestfs-actions.pod:9146 +#: ../src/guestfs-actions.pod:9153 msgid "guestfs_umount_local_argv" msgstr "guestfs_umount_local_argv" #. type: verbatim -#: ../src/guestfs-actions.pod:9148 +#: ../src/guestfs-actions.pod:9155 #, no-wrap msgid "" " int\n" @@ -43039,17 +43058,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9152 +#: ../src/guestfs-actions.pod:9159 msgid "This is the \"argv variant\" of L." msgstr "Це «варіант з argv» L." #. type: =head2 -#: ../src/guestfs-actions.pod:9156 +#: ../src/guestfs-actions.pod:9163 msgid "guestfs_upload" msgstr "guestfs_upload" #. type: verbatim -#: ../src/guestfs-actions.pod:9158 +#: ../src/guestfs-actions.pod:9165 #, no-wrap msgid "" " int\n" @@ -43065,17 +43084,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9168 +#: ../src/guestfs-actions.pod:9175 msgid "See also C." msgstr "Див. також C." #. type: =head2 -#: ../src/guestfs-actions.pod:9179 +#: ../src/guestfs-actions.pod:9186 msgid "guestfs_upload_offset" msgstr "guestfs_upload_offset" #. type: verbatim -#: ../src/guestfs-actions.pod:9181 +#: ../src/guestfs-actions.pod:9188 #, no-wrap msgid "" " int\n" @@ -43093,7 +43112,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9197 +#: ../src/guestfs-actions.pod:9204 msgid "" "Note that there is no limit on the amount of data that can be uploaded with " "this call, unlike with C, and this call always writes the " @@ -43101,17 +43120,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9202 +#: ../src/guestfs-actions.pod:9209 msgid "See also C, C." msgstr "Див. також C, C." #. type: =head2 -#: ../src/guestfs-actions.pod:9213 +#: ../src/guestfs-actions.pod:9220 msgid "guestfs_utimens" msgstr "guestfs_utimens" #. type: verbatim -#: ../src/guestfs-actions.pod:9215 +#: ../src/guestfs-actions.pod:9222 #, no-wrap msgid "" " int\n" @@ -43133,12 +43152,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9244 ../src/guestfs-structs.pod:175 +#: ../src/guestfs-actions.pod:9251 ../src/guestfs-structs.pod:175 msgid "guestfs_version" msgstr "guestfs_version" #. type: verbatim -#: ../src/guestfs-actions.pod:9246 +#: ../src/guestfs-actions.pod:9253 #, no-wrap msgid "" " struct guestfs_version *\n" @@ -43150,7 +43169,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9274 +#: ../src/guestfs-actions.pod:9281 msgid "" "I Don't use this call to test for availability of features. In " "enterprise distributions we backport features from later versions into " @@ -43159,24 +43178,24 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9280 +#: ../src/guestfs-actions.pod:9287 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9284 +#: ../src/guestfs-actions.pod:9291 msgid "(Added in 1.0.58)" msgstr "(Додано у 1.0.58)" #. type: =head2 -#: ../src/guestfs-actions.pod:9286 +#: ../src/guestfs-actions.pod:9293 msgid "guestfs_vfs_label" msgstr "guestfs_vfs_label" #. type: verbatim -#: ../src/guestfs-actions.pod:9288 +#: ../src/guestfs-actions.pod:9295 #, no-wrap msgid "" " char *\n" @@ -43190,24 +43209,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9297 +#: ../src/guestfs-actions.pod:9304 msgid "To find a filesystem from the label, use C." msgstr "" "Пошук файлової системи за міткою можна здійснити за допомогою " "C." #. type: textblock -#: ../src/guestfs-actions.pod:9302 ../src/guestfs-actions.pod:9339 +#: ../src/guestfs-actions.pod:9309 ../src/guestfs-actions.pod:9346 msgid "(Added in 1.3.18)" msgstr "(Додано у 1.3.18)" #. type: =head2 -#: ../src/guestfs-actions.pod:9304 +#: ../src/guestfs-actions.pod:9311 msgid "guestfs_vfs_type" msgstr "guestfs_vfs_type" #. type: verbatim -#: ../src/guestfs-actions.pod:9306 +#: ../src/guestfs-actions.pod:9313 #, no-wrap msgid "" " char *\n" @@ -43221,12 +43240,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9323 +#: ../src/guestfs-actions.pod:9330 msgid "guestfs_vfs_uuid" msgstr "guestfs_vfs_uuid" #. type: verbatim -#: ../src/guestfs-actions.pod:9325 +#: ../src/guestfs-actions.pod:9332 #, no-wrap msgid "" " char *\n" @@ -43240,19 +43259,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9334 +#: ../src/guestfs-actions.pod:9341 msgid "To find a filesystem from the UUID, use C." msgstr "" "Пошук файлової системи за UUID можна здійснити за допомогою " "C." #. type: =head2 -#: ../src/guestfs-actions.pod:9341 +#: ../src/guestfs-actions.pod:9348 msgid "guestfs_vg_activate" msgstr "guestfs_vg_activate" #. type: verbatim -#: ../src/guestfs-actions.pod:9343 +#: ../src/guestfs-actions.pod:9350 #, no-wrap msgid "" " int\n" @@ -43268,12 +43287,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9360 +#: ../src/guestfs-actions.pod:9367 msgid "guestfs_vg_activate_all" msgstr "guestfs_vg_activate_all" #. type: verbatim -#: ../src/guestfs-actions.pod:9362 +#: ../src/guestfs-actions.pod:9369 #, no-wrap msgid "" " int\n" @@ -43287,12 +43306,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9375 +#: ../src/guestfs-actions.pod:9382 msgid "guestfs_vgcreate" msgstr "guestfs_vgcreate" #. type: verbatim -#: ../src/guestfs-actions.pod:9377 +#: ../src/guestfs-actions.pod:9384 #, no-wrap msgid "" " int\n" @@ -43308,12 +43327,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9389 +#: ../src/guestfs-actions.pod:9396 msgid "guestfs_vglvuuids" msgstr "guestfs_vglvuuids" #. type: verbatim -#: ../src/guestfs-actions.pod:9391 +#: ../src/guestfs-actions.pod:9398 #, no-wrap msgid "" " char **\n" @@ -43327,24 +43346,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9398 +#: ../src/guestfs-actions.pod:9405 msgid "" "You can use this along with C and C calls to " "associate logical volumes and volume groups." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9401 +#: ../src/guestfs-actions.pod:9408 msgid "See also C." msgstr "Див. також C." #. type: =head2 -#: ../src/guestfs-actions.pod:9409 +#: ../src/guestfs-actions.pod:9416 msgid "guestfs_vgmeta" msgstr "guestfs_vgmeta" #. type: verbatim -#: ../src/guestfs-actions.pod:9411 +#: ../src/guestfs-actions.pod:9418 #, no-wrap msgid "" " char *\n" @@ -43360,17 +43379,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9426 +#: ../src/guestfs-actions.pod:9433 msgid "(Added in 1.17.20)" msgstr "(Додано у 1.17.20)" #. type: =head2 -#: ../src/guestfs-actions.pod:9428 +#: ../src/guestfs-actions.pod:9435 msgid "guestfs_vgpvuuids" msgstr "guestfs_vgpvuuids" #. type: verbatim -#: ../src/guestfs-actions.pod:9430 +#: ../src/guestfs-actions.pod:9437 #, no-wrap msgid "" " char **\n" @@ -43384,24 +43403,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9437 +#: ../src/guestfs-actions.pod:9444 msgid "" "You can use this along with C and C calls to " "associate physical volumes and volume groups." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9440 +#: ../src/guestfs-actions.pod:9447 msgid "See also C." msgstr "Див. також C." #. type: =head2 -#: ../src/guestfs-actions.pod:9448 +#: ../src/guestfs-actions.pod:9455 msgid "guestfs_vgremove" msgstr "guestfs_vgremove" #. type: verbatim -#: ../src/guestfs-actions.pod:9450 +#: ../src/guestfs-actions.pod:9457 #, no-wrap msgid "" " int\n" @@ -43415,12 +43434,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9463 +#: ../src/guestfs-actions.pod:9470 msgid "guestfs_vgrename" msgstr "guestfs_vgrename" #. type: verbatim -#: ../src/guestfs-actions.pod:9465 +#: ../src/guestfs-actions.pod:9472 #, no-wrap msgid "" " int\n" @@ -43436,12 +43455,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9476 +#: ../src/guestfs-actions.pod:9483 msgid "guestfs_vgs" msgstr "guestfs_vgs" #. type: verbatim -#: ../src/guestfs-actions.pod:9478 +#: ../src/guestfs-actions.pod:9485 #, no-wrap msgid "" " char **\n" @@ -43453,17 +43472,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9487 +#: ../src/guestfs-actions.pod:9494 msgid "See also C." msgstr "Див. також C." #. type: =head2 -#: ../src/guestfs-actions.pod:9495 +#: ../src/guestfs-actions.pod:9502 msgid "guestfs_vgs_full" msgstr "guestfs_vgs_full" #. type: verbatim -#: ../src/guestfs-actions.pod:9497 +#: ../src/guestfs-actions.pod:9504 #, no-wrap msgid "" " struct guestfs_lvm_vg_list *\n" @@ -43475,19 +43494,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9503 +#: ../src/guestfs-actions.pod:9510 msgid "" "This function returns a C, or NULL if there " "was an error. I after use>." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9509 +#: ../src/guestfs-actions.pod:9516 msgid "guestfs_vgscan" msgstr "guestfs_vgscan" #. type: verbatim -#: ../src/guestfs-actions.pod:9511 +#: ../src/guestfs-actions.pod:9518 #, no-wrap msgid "" " int\n" @@ -43499,12 +43518,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9521 +#: ../src/guestfs-actions.pod:9528 msgid "guestfs_vguuid" msgstr "guestfs_vguuid" #. type: verbatim -#: ../src/guestfs-actions.pod:9523 +#: ../src/guestfs-actions.pod:9530 #, no-wrap msgid "" " char *\n" @@ -43518,12 +43537,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9534 +#: ../src/guestfs-actions.pod:9541 msgid "guestfs_wait_ready" msgstr "guestfs_wait_ready" #. type: verbatim -#: ../src/guestfs-actions.pod:9536 +#: ../src/guestfs-actions.pod:9543 #, no-wrap msgid "" " int\n" @@ -43535,19 +43554,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9539 +#: ../src/guestfs-actions.pod:9546 msgid "" "I In new code, use the L call " "instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9546 +#: ../src/guestfs-actions.pod:9553 msgid "This function is a no op." msgstr "Ця функція не виконує ніяких дій." #. type: textblock -#: ../src/guestfs-actions.pod:9548 +#: ../src/guestfs-actions.pod:9555 msgid "" "In versions of the API E 1.0.71 you had to call this function just after " "calling C to wait for the launch to complete. However this " @@ -43555,19 +43574,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9553 +#: ../src/guestfs-actions.pod:9560 msgid "" "If you see any calls to this function in code then you can just remove them, " "unless you want to retain compatibility with older versions of the API." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9561 +#: ../src/guestfs-actions.pod:9568 msgid "guestfs_wc_c" msgstr "guestfs_wc_c" #. type: verbatim -#: ../src/guestfs-actions.pod:9563 +#: ../src/guestfs-actions.pod:9570 #, no-wrap msgid "" " int\n" @@ -43581,12 +43600,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9574 +#: ../src/guestfs-actions.pod:9581 msgid "guestfs_wc_l" msgstr "guestfs_wc_l" #. type: verbatim -#: ../src/guestfs-actions.pod:9576 +#: ../src/guestfs-actions.pod:9583 #, no-wrap msgid "" " int\n" @@ -43600,12 +43619,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9587 +#: ../src/guestfs-actions.pod:9594 msgid "guestfs_wc_w" msgstr "guestfs_wc_w" #. type: verbatim -#: ../src/guestfs-actions.pod:9589 +#: ../src/guestfs-actions.pod:9596 #, no-wrap msgid "" " int\n" @@ -43619,12 +43638,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9600 +#: ../src/guestfs-actions.pod:9607 msgid "guestfs_wipefs" msgstr "guestfs_wipefs" #. type: verbatim -#: ../src/guestfs-actions.pod:9602 +#: ../src/guestfs-actions.pod:9609 #, no-wrap msgid "" " int\n" @@ -43638,18 +43657,18 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9612 +#: ../src/guestfs-actions.pod:9619 msgid "" "Compare with C which zeroes the first few blocks of a device." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9619 +#: ../src/guestfs-actions.pod:9626 msgid "guestfs_write" msgstr "guestfs_write" #. type: verbatim -#: ../src/guestfs-actions.pod:9621 +#: ../src/guestfs-actions.pod:9628 #, no-wrap msgid "" " int\n" @@ -43667,17 +43686,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9630 +#: ../src/guestfs-actions.pod:9637 msgid "See also C." msgstr "Див. також C." #. type: =head2 -#: ../src/guestfs-actions.pod:9639 +#: ../src/guestfs-actions.pod:9646 msgid "guestfs_write_append" msgstr "guestfs_write_append" #. type: verbatim -#: ../src/guestfs-actions.pod:9641 +#: ../src/guestfs-actions.pod:9648 #, no-wrap msgid "" " int\n" @@ -43695,17 +43714,17 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9650 +#: ../src/guestfs-actions.pod:9657 msgid "See also C." msgstr "Див. також C." #. type: =head2 -#: ../src/guestfs-actions.pod:9659 +#: ../src/guestfs-actions.pod:9666 msgid "guestfs_write_file" msgstr "guestfs_write_file" #. type: verbatim -#: ../src/guestfs-actions.pod:9661 +#: ../src/guestfs-actions.pod:9668 #, no-wrap msgid "" " int\n" @@ -43723,21 +43742,21 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9667 +#: ../src/guestfs-actions.pod:9674 msgid "" "I In new code, use the L call " "instead." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9692 +#: ../src/guestfs-actions.pod:9699 #, fuzzy #| msgid "guestfs_isoinfo" msgid "guestfs_xfs_info" msgstr "guestfs_isoinfo" #. type: verbatim -#: ../src/guestfs-actions.pod:9694 +#: ../src/guestfs-actions.pod:9701 #, fuzzy, no-wrap #| msgid "" #| " struct guestfs_isoinfo *\n" @@ -43756,19 +43775,19 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9705 +#: ../src/guestfs-actions.pod:9712 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9709 +#: ../src/guestfs-actions.pod:9716 msgid "guestfs_zegrep" msgstr "guestfs_zegrep" #. type: verbatim -#: ../src/guestfs-actions.pod:9711 +#: ../src/guestfs-actions.pod:9718 #, no-wrap msgid "" " char **\n" @@ -43784,12 +43803,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9728 +#: ../src/guestfs-actions.pod:9735 msgid "guestfs_zegrepi" msgstr "guestfs_zegrepi" #. type: verbatim -#: ../src/guestfs-actions.pod:9730 +#: ../src/guestfs-actions.pod:9737 #, no-wrap msgid "" " char **\n" @@ -43805,12 +43824,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9747 +#: ../src/guestfs-actions.pod:9754 msgid "guestfs_zero" msgstr "guestfs_zero" #. type: verbatim -#: ../src/guestfs-actions.pod:9749 +#: ../src/guestfs-actions.pod:9756 #, no-wrap msgid "" " int\n" @@ -43824,7 +43843,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9763 +#: ../src/guestfs-actions.pod:9770 msgid "" "See also: C, C, " "C" @@ -43833,12 +43852,12 @@ msgstr "" "C" #. type: =head2 -#: ../src/guestfs-actions.pod:9775 +#: ../src/guestfs-actions.pod:9782 msgid "guestfs_zero_device" msgstr "guestfs_zero_device" #. type: verbatim -#: ../src/guestfs-actions.pod:9777 +#: ../src/guestfs-actions.pod:9784 #, no-wrap msgid "" " int\n" @@ -43852,24 +43871,24 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9781 +#: ../src/guestfs-actions.pod:9788 msgid "" "This command writes zeroes over the entire C. Compare with " "C which just zeroes the first few blocks of a device." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9796 +#: ../src/guestfs-actions.pod:9803 msgid "(Added in 1.3.1)" msgstr "(Додано у 1.3.1)" #. type: =head2 -#: ../src/guestfs-actions.pod:9798 +#: ../src/guestfs-actions.pod:9805 msgid "guestfs_zero_free_space" msgstr "guestfs_zero_free_space" #. type: verbatim -#: ../src/guestfs-actions.pod:9800 +#: ../src/guestfs-actions.pod:9807 #, no-wrap msgid "" " int\n" @@ -43883,7 +43902,7 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9810 +#: ../src/guestfs-actions.pod:9817 msgid "" "Free space is not \"trimmed\". You may want to call C " "either as an alternative to this, or after calling this, depending on your " @@ -43891,12 +43910,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9823 +#: ../src/guestfs-actions.pod:9830 msgid "guestfs_zerofree" msgstr "guestfs_zerofree" #. type: verbatim -#: ../src/guestfs-actions.pod:9825 +#: ../src/guestfs-actions.pod:9832 #, no-wrap msgid "" " int\n" @@ -43910,12 +43929,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9844 +#: ../src/guestfs-actions.pod:9851 msgid "guestfs_zfgrep" msgstr "guestfs_zfgrep" #. type: verbatim -#: ../src/guestfs-actions.pod:9846 +#: ../src/guestfs-actions.pod:9853 #, no-wrap msgid "" " char **\n" @@ -43931,12 +43950,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9863 +#: ../src/guestfs-actions.pod:9870 msgid "guestfs_zfgrepi" msgstr "guestfs_zfgrepi" #. type: verbatim -#: ../src/guestfs-actions.pod:9865 +#: ../src/guestfs-actions.pod:9872 #, no-wrap msgid "" " char **\n" @@ -43952,12 +43971,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9882 +#: ../src/guestfs-actions.pod:9889 msgid "guestfs_zfile" msgstr "guestfs_zfile" #. type: verbatim -#: ../src/guestfs-actions.pod:9884 +#: ../src/guestfs-actions.pod:9891 #, no-wrap msgid "" " char *\n" @@ -43973,26 +43992,26 @@ msgstr "" "\n" #. type: textblock -#: ../src/guestfs-actions.pod:9889 +#: ../src/guestfs-actions.pod:9896 msgid "" "I In new code, use the L call " "instead." msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:9901 +#: ../src/guestfs-actions.pod:9908 msgid "" "Since 1.0.63, use C instead which can now process compressed " "files." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:9909 +#: ../src/guestfs-actions.pod:9916 msgid "guestfs_zgrep" msgstr "guestfs_zgrep" #. type: verbatim -#: ../src/guestfs-actions.pod:9911 +#: ../src/guestfs-actions.pod:9918 #, no-wrap msgid "" " char **\n" @@ -44008,12 +44027,12 @@ msgstr "" "\n" #. type: =head2 -#: ../src/guestfs-actions.pod:9928 +#: ../src/guestfs-actions.pod:9935 msgid "guestfs_zgrepi" msgstr "guestfs_zgrepi" #. type: verbatim -#: ../src/guestfs-actions.pod:9930 +#: ../src/guestfs-actions.pod:9937 #, no-wrap msgid "" " char **\n" diff --git a/po/POTFILES b/po/POTFILES index 4bbe2d100..ef76203fb 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -24,9 +24,9 @@ daemon/dir.c daemon/dmesg.c daemon/dropcaches.c daemon/du.c -daemon/echo_daemon.c +daemon/echo-daemon.c +daemon/errnostring-gperf.c daemon/errnostring.c -daemon/errnostring_gperf.c daemon/ext2.c daemon/fallocate.c daemon/file.c @@ -95,8 +95,8 @@ edit/virt-edit.c erlang/erl-guestfs-proto.c erlang/erl-guestfs.c fish/alloc.c +fish/cmds-gperf.c fish/cmds.c -fish/cmds_gperf.c fish/completion.c fish/config.c fish/copy.c @@ -117,12 +117,12 @@ fish/lcd.c fish/man.c fish/more.c fish/options.c +fish/prep-boot.c +fish/prep-disk.c +fish/prep-fs.c +fish/prep-lv.c +fish/prep-part.c fish/prep.c -fish/prep_boot.c -fish/prep_disk.c -fish/prep_fs.c -fish/prep_lv.c -fish/prep_part.c fish/prepopts.c fish/progress.c fish/rc.c @@ -178,8 +178,8 @@ gobject/src/struct-xfsinfo.c gobject/src/tristate.c inspector/virt-inspector.c java/com_redhat_et_libguestfs_GuestFS.c -ocaml/guestfs_c.c -ocaml/guestfs_c_actions.c +ocaml/guestfs-c-actions.c +ocaml/guestfs-c.c perl/Guestfs.c perl/bindtests.pl perl/lib/Sys/Guestfs.pm @@ -188,26 +188,26 @@ php/extension/guestfs_php.c python/guestfs-py-byhand.c python/guestfs-py.c rescue/virt-rescue.c -resize/progress_c.c +resize/progress-c.c ruby/ext/guestfs/_guestfs.c -sparsify/progress_c.c +sparsify/progress-c.c src/actions.c src/appliance.c src/bindtests.c src/dbdump.c +src/errnostring-gperf.c src/errnostring.c -src/errnostring_gperf.c src/events.c src/filearch.c src/fuse.c src/guestfs.c +src/inspect-apps.c +src/inspect-fs-cd.c +src/inspect-fs-unix.c +src/inspect-fs-windows.c +src/inspect-fs.c +src/inspect-icon.c src/inspect.c -src/inspect_apps.c -src/inspect_fs.c -src/inspect_fs_cd.c -src/inspect_fs_unix.c -src/inspect_fs_windows.c -src/inspect_icon.c src/launch.c src/libvirtdomain.c src/listfs.c diff --git a/resize/Makefile.am b/resize/Makefile.am index 0d80df14e..a9d27d214 100644 --- a/resize/Makefile.am +++ b/resize/Makefile.am @@ -32,7 +32,7 @@ CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-resize test.img # Alphabetical order. SOURCES = \ - progress_c.c \ + progress-c.c \ progress.mli \ progress.ml \ resize.ml \ @@ -45,7 +45,7 @@ if HAVE_OCAML # Note this list must be in dependency order. OBJECTS = \ $(top_builddir)/fish/guestfish-progress.o \ - progress_c.o \ + progress-c.o \ resize_gettext.cmx \ utils.cmx \ progress.cmx \ diff --git a/resize/progress_c.c b/resize/progress-c.c similarity index 100% rename from resize/progress_c.c rename to resize/progress-c.c diff --git a/sparsify/Makefile.am b/sparsify/Makefile.am index 36c7b73c1..a2e2b9c6a 100644 --- a/sparsify/Makefile.am +++ b/sparsify/Makefile.am @@ -32,7 +32,7 @@ CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-sparsify test.img # Alphabetical order. SOURCES = \ - progress_c.c \ + progress-c.c \ progress.mli \ progress.ml \ sparsify.ml \ @@ -44,7 +44,7 @@ if HAVE_OCAML # Note this list must be in dependency order. OBJECTS = \ $(top_builddir)/fish/guestfish-progress.o \ - progress_c.o \ + progress-c.o \ sparsify_gettext.cmx \ utils.cmx \ progress.cmx \ diff --git a/sparsify/progress_c.c b/sparsify/progress-c.c similarity index 100% rename from sparsify/progress_c.c rename to sparsify/progress-c.c diff --git a/src/Makefile.am b/src/Makefile.am index ad6418737..d956fdb3b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -25,7 +25,7 @@ generator_built = \ guestfs-internal-actions.h \ actions.c \ bindtests.c \ - errnostring_gperf.gperf \ + errnostring-gperf.gperf \ errnostring.c \ errnostring.h \ guestfs-actions.pod \ @@ -37,7 +37,7 @@ BUILT_SOURCES = \ $(generator_built) \ guestfs_protocol.c \ guestfs_protocol.h \ - errnostring_gperf.c + errnostring-gperf.c EXTRA_DIST = \ $(BUILT_SOURCES) \ @@ -62,12 +62,12 @@ libprotocol_la_CFLAGS = \ # Build the errnostring perfect hash code. The generated code has lots # of warnings so we must compile it in a separate mini-library. liberrnostring_la_SOURCES = \ - errnostring_gperf.c \ + errnostring-gperf.c \ errnostring.h \ errnostring.c liberrnostring_la_CFLAGS = $(GCC_VISIBILITY_HIDDEN) -errnostring_gperf.c: errnostring_gperf.gperf +errnostring-gperf.c: errnostring-gperf.gperf rm -f $@ $(GPERF) -t $< > $@-t mv $@-t $@ @@ -130,12 +130,12 @@ libguestfs_la_SOURCES = \ filearch.c \ fuse.c \ inspect.c \ - inspect_apps.c \ - inspect_fs.c \ - inspect_fs_cd.c \ - inspect_fs_unix.c \ - inspect_fs_windows.c \ - inspect_icon.c \ + inspect-apps.c \ + inspect-fs.c \ + inspect-fs-cd.c \ + inspect-fs-unix.c \ + inspect-fs-windows.c \ + inspect-icon.c \ launch.c \ libvirtdomain.c \ listfs.c \ diff --git a/src/inspect_apps.c b/src/inspect-apps.c similarity index 100% rename from src/inspect_apps.c rename to src/inspect-apps.c diff --git a/src/inspect_fs_cd.c b/src/inspect-fs-cd.c similarity index 100% rename from src/inspect_fs_cd.c rename to src/inspect-fs-cd.c diff --git a/src/inspect_fs_unix.c b/src/inspect-fs-unix.c similarity index 100% rename from src/inspect_fs_unix.c rename to src/inspect-fs-unix.c diff --git a/src/inspect_fs_windows.c b/src/inspect-fs-windows.c similarity index 100% rename from src/inspect_fs_windows.c rename to src/inspect-fs-windows.c diff --git a/src/inspect_fs.c b/src/inspect-fs.c similarity index 100% rename from src/inspect_fs.c rename to src/inspect-fs.c diff --git a/src/inspect_icon.c b/src/inspect-icon.c similarity index 100% rename from src/inspect_icon.c rename to src/inspect-icon.c diff --git a/tests/xml/Makefile.am b/tests/xml/Makefile.am index 797656a5d..eff67bebb 100644 --- a/tests/xml/Makefile.am +++ b/tests/xml/Makefile.am @@ -26,7 +26,7 @@ if HAVE_LIBVIRT # returned by libvirt. check_LTLIBRARIES = libfakevirtxml.la -libfakevirtxml_la_SOURCES = fake_libvirt_xml.c +libfakevirtxml_la_SOURCES = fake-libvirt-xml.c libfakevirtxml_la_CFLAGS = $(LIBVIRT_CFLAGS) # -version-info and -rpath force libtool to build a shared library. libfakevirtxml_la_LDFLAGS = -version-info 0:0:0 -rpath /nowhere diff --git a/tests/xml/fake_libvirt_xml.c b/tests/xml/fake-libvirt-xml.c similarity index 100% rename from tests/xml/fake_libvirt_xml.c rename to tests/xml/fake-libvirt-xml.c