X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=po-docs%2Fja.po;h=664967a17085ef648cd5ba45a98b997cc8de2221;hb=refs%2Ftags%2F1.9.13;hp=7d15fc16a1f197b207b5ffbb7bb3715c70fd3056;hpb=15ba6ae17d5272d3d906f4053ed424447dc910bd;p=libguestfs.git diff --git a/po-docs/ja.po b/po-docs/ja.po index 7d15fc1..664967a 100644 --- a/po-docs/ja.po +++ b/po-docs/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: libguestfs@redhat.com\n" -"POT-Creation-Date: 2011-03-08 16:20+0000\n" +"POT-Creation-Date: 2011-03-24 12:04+0000\n" "PO-Revision-Date: 2010-09-02 14:46+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -250,7 +250,6 @@ msgid "" " \n" msgstr "" -# type: verbatim #. type: verbatim #: ../src/guestfs.pod:98 #, no-wrap @@ -259,7 +258,7 @@ msgid "" " * disk image.\n" " */\n" " guestfs_touch (g, \"/hello\");\n" -"\n" +" \n" msgstr "" # type: verbatim @@ -924,10 +923,11 @@ msgstr "" #: ../src/guestfs.pod:1158 ../src/guestfs.pod:1162 ../src/guestfs.pod:1166 #: ../src/guestfs.pod:1170 ../src/guestfs.pod:1174 ../src/guestfs.pod:1178 #: ../src/guestfs.pod:1660 ../src/guestfs.pod:1665 ../src/guestfs.pod:1669 -#: ../src/guestfs.pod:1779 ../src/guestfs.pod:1784 ../src/guestfs.pod:1788 -#: ../src/guestfs.pod:2140 ../src/guestfs.pod:2146 ../src/guestfs.pod:2151 -#: ../src/guestfs.pod:2157 ../src/guestfs.pod:2622 ../src/guestfs.pod:2626 -#: ../src/guestfs.pod:2630 ../src/guestfs.pod:2634 +#: ../src/guestfs.pod:1770 ../src/guestfs.pod:1775 ../src/guestfs.pod:1779 +#: ../src/guestfs.pod:2008 ../src/guestfs.pod:2013 ../src/guestfs.pod:2019 +#: ../src/guestfs.pod:2027 ../src/guestfs.pod:2381 ../src/guestfs.pod:2387 +#: ../src/guestfs.pod:2392 ../src/guestfs.pod:2398 ../src/guestfs.pod:2863 +#: ../src/guestfs.pod:2867 ../src/guestfs.pod:2871 ../src/guestfs.pod:2875 #: ../src/guestfs-actions.pod:15 ../src/guestfs-actions.pod:22 #: ../src/guestfs-actions.pod:577 ../src/guestfs-actions.pod:585 #: ../src/guestfs-actions.pod:592 ../src/guestfs-actions.pod:599 @@ -1101,7 +1101,7 @@ msgstr "" # type: =item #. type: =item #: ../src/guestfs.pod:469 ../src/guestfs.pod:1281 ../src/guestfs.pod:1412 -#: ../src/guestfs.pod:2185 +#: ../src/guestfs.pod:2426 msgid "1." msgstr "" @@ -1123,7 +1123,7 @@ msgstr "" # type: =item #. type: =item #: ../src/guestfs.pod:475 ../src/guestfs.pod:1285 ../src/guestfs.pod:1416 -#: ../src/guestfs.pod:2210 +#: ../src/guestfs.pod:2451 msgid "2." msgstr "" @@ -2147,11 +2147,10 @@ msgstr "" msgid "PATH" msgstr "" -# type: textblock #. type: textblock #: ../src/guestfs.pod:935 msgid "" -"Libguestfs needs a kernel and initrd.img, which it finds by looking along an " +"Libguestfs needs a supermin appliance, which it finds by looking along an " "internal path." msgstr "" @@ -3753,277 +3752,508 @@ msgstr "" msgid "SETTING CALLBACKS TO HANDLE EVENTS" msgstr "" -# type: textblock #. type: textblock #: ../src/guestfs.pod:1686 msgid "" -"The child process generates events in some situations. Current events " -"include: receiving a log message, the child process exits." +"B This section documents the generic event mechanism introduced in " +"libguestfs 1.10, which you should use in new code if possible. The old " +"functions C, " +"C, " +"C, C and " +"C are no longer documented in this manual " +"page." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1694 +msgid "" +"Handles generate events when certain things happen, such as log messages " +"being generated, progress messages during long-running operations, or the " +"handle being closed. The API calls described below let you register a " +"callback to be called when events happen. You can register multiple " +"callbacks (for the same, different or overlapping sets of events), and " +"individually remove callbacks. If callbacks are not removed, then they " +"remain in force until the handle is closed." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1689 +#: ../src/guestfs.pod:1702 msgid "" -"Use the C functions to set a callback for different " -"types of events." +"In the current implementation, events are only generated synchronously: that " +"means that events (and hence callbacks) can only happen while you are in the " +"middle of making another libguestfs call. The callback is called in the " +"same thread." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1707 +msgid "" +"Events may contain a payload, usually nothing (void), an array of 64 bit " +"unsigned integers, or a message buffer. Payloads are discussed later on." +msgstr "" + +#. type: =head3 +#: ../src/guestfs.pod:1711 +msgid "CLASSES OF EVENTS" +msgstr "" + +#. type: =item +#: ../src/guestfs.pod:1715 +msgid "GUESTFS_EVENT_CLOSE (payload type: void)" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1718 +msgid "" +"The callback function will be called while the handle is being closed " +"(synchronously from L)." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1692 +#: ../src/guestfs.pod:1721 msgid "" -"Only I can be registered for each handle. " -"Calling C again overwrites the previous callback of " -"that type. Cancel all callbacks of this type by calling this function with " -"C set to C." +"Note that libguestfs installs an L handler to try to clean up " +"handles that are open when the program exits. This means that this callback " +"might be called indirectly from L, which can cause unexpected " +"problems in higher-level languages (eg. if your HLL interpreter has already " +"been cleaned up by the time this is called, and if your callback then jumps " +"into some HLL function)." msgstr "" -# type: =head2 -#. type: =head2 -#: ../src/guestfs.pod:1697 -msgid "guestfs_set_log_message_callback" +#. type: textblock +#: ../src/guestfs.pod:1728 +msgid "" +"If no callback is registered: the handle is closed without any callback " +"being invoked." msgstr "" -# type: verbatim -#. type: verbatim -#: ../src/guestfs.pod:1699 -#, no-wrap +#. type: =item +#: ../src/guestfs.pod:1731 +msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1734 msgid "" -" typedef void (*guestfs_log_message_cb) (guestfs_h *g, void *opaque,\n" -" char *buf, int len);\n" -" void guestfs_set_log_message_callback (guestfs_h *g,\n" -" guestfs_log_message_cb cb,\n" -" void *opaque);\n" -"\n" +"The callback function will be called when the child process quits, either " +"asynchronously or if killed by L. (This " +"corresponds to a transition from any state to the CONFIG state)." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1738 ../src/guestfs.pod:1747 +msgid "If no callback is registered: the event is ignored." +msgstr "" + +#. type: =item +#: ../src/guestfs.pod:1740 +msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1743 +msgid "" +"The callback function will be called when the child process becomes ready " +"first time after it has been launched. (This corresponds to a transition " +"from LAUNCHING to the READY state)." +msgstr "" + +#. type: =item +#: ../src/guestfs.pod:1749 +msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1705 +#: ../src/guestfs.pod:1752 +msgid "" +"Some long-running operations can generate progress messages. If this " +"callback is registered, then it will be called each time a progress message " +"is generated (usually two seconds after the operation started, and three " +"times per second thereafter until it completes, although the frequency may " +"change in future versions)." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1758 +msgid "" +"The callback receives in the payload four unsigned 64 bit numbers which are " +"(in order): C, C, C, C." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1761 msgid "" -"The callback function C will be called whenever qemu or the guest writes " -"anything to the console." +"The units of C are not defined, although for some operations C " +"may relate in some way to the amount of data to be transferred (eg. in bytes " +"or megabytes), and C may be the portion which has been transferred." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1708 -msgid "Use this function to capture kernel messages and similar." +#: ../src/guestfs.pod:1766 +msgid "The only defined and stable parts of the API are:" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1710 +#: ../src/guestfs.pod:1772 msgid "" -"Normally there is no log message handler, and log messages are just " -"discarded." +"The callback can display to the user some type of progress bar or indicator " +"which shows the ratio of C:C." msgstr "" -# type: =head2 -#. type: =head2 -#: ../src/guestfs.pod:1713 -msgid "guestfs_set_subprocess_quit_callback" +# type: textblock +#. type: textblock +#: ../src/guestfs.pod:1777 +msgid "0 E= C E= C" msgstr "" -# type: verbatim -#. type: verbatim -#: ../src/guestfs.pod:1715 -#, no-wrap +# type: textblock +#. type: textblock +#: ../src/guestfs.pod:1781 msgid "" -" typedef void (*guestfs_subprocess_quit_cb) (guestfs_h *g, void *opaque);\n" -" void guestfs_set_subprocess_quit_callback (guestfs_h *g,\n" -" guestfs_subprocess_quit_cb cb,\n" -" void *opaque);\n" -"\n" +"If any progress notification is sent during a call, then a final progress " +"notification is always sent when C = C." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1720 +#: ../src/guestfs.pod:1784 msgid "" -"The callback function C will be called when the child process quits, " -"either asynchronously or if killed by L. (This " -"corresponds to a transition from any state to the CONFIG state)." +"This is to simplify caller code, so callers can easily set the progress " +"indicator to \"100%\" at the end of the operation, without requiring special " +"code to detect this case." msgstr "" -# type: =head2 -#. type: =head2 -#: ../src/guestfs.pod:1725 -msgid "guestfs_set_launch_done_callback" +#. type: textblock +#: ../src/guestfs.pod:1790 +msgid "" +"The callback also receives the procedure number (C) and serial " +"number (C) of the call. These are only useful for debugging " +"protocol issues, and the callback can normally ignore them. The callback " +"may want to print these numbers in error messages or debugging messages." msgstr "" -# type: verbatim -#. type: verbatim -#: ../src/guestfs.pod:1727 -#, no-wrap +#. type: textblock +#: ../src/guestfs.pod:1796 +msgid "If no callback is registered: progress messages are discarded." +msgstr "" + +#. type: =item +#: ../src/guestfs.pod:1798 +msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1801 msgid "" -" typedef void (*guestfs_launch_done_cb) (guestfs_h *g, void *opaque);\n" -" void guestfs_set_launch_done_callback (guestfs_h *g,\n" -" guestfs_launch_done_cb cb,\n" -" void *opaque);\n" -"\n" +"The callback function is called whenever a log message is generated by qemu, " +"the appliance kernel, guestfsd (daemon), or utility programs." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1732 +#: ../src/guestfs.pod:1804 msgid "" -"The callback function C will be called when the child process becomes " -"ready first time after it has been launched. (This corresponds to a " -"transition from LAUNCHING to the READY state)." +"If the verbose flag (L) is set before launch (L) then additional debug messages are generated." msgstr "" -# type: =head2 -#. type: =head2 -#: ../src/guestfs.pod:1736 -msgid "guestfs_set_close_callback" +#. type: textblock +#: ../src/guestfs.pod:1807 ../src/guestfs.pod:1821 +msgid "" +"If no callback is registered: the messages are discarded unless the verbose " +"flag is set in which case they are sent to stderr. You can override the " +"printing of verbose messages to stderr by setting up a callback." +msgstr "" + +#. type: =item +#: ../src/guestfs.pod:1812 +msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1815 +msgid "" +"The callback function is called whenever a log message is generated by the " +"library part of libguestfs." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1818 +msgid "" +"If the verbose flag (L) is set then additional debug " +"messages are generated." +msgstr "" + +#. type: =item +#: ../src/guestfs.pod:1826 +msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1829 +msgid "" +"The callback function is called whenever a trace message is generated. This " +"only applies if the trace flag (L) is set." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1832 +msgid "" +"If no callback is registered: the messages are sent to stderr. You can " +"override the printing of trace messages to stderr by setting up a callback." +msgstr "" + +#. type: =head3 +#: ../src/guestfs.pod:1838 +msgid "guestfs_set_event_callback" msgstr "" -# type: verbatim #. type: verbatim -#: ../src/guestfs.pod:1738 +#: ../src/guestfs.pod:1840 #, no-wrap msgid "" -" typedef void (*guestfs_close_cb) (guestfs_h *g, void *opaque);\n" -" void guestfs_set_close_callback (guestfs_h *g,\n" -" guestfs_close_cb cb,\n" -" void *opaque);\n" +" int guestfs_set_event_callback (guestfs_h *g,\n" +" guestfs_event_callback cb,\n" +" uint64_t event_bitmask,\n" +" int flags,\n" +" void *opaque);\n" "\n" msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1743 +#: ../src/guestfs.pod:1846 msgid "" -"The callback function C will be called while the handle is being closed " -"(synchronously from L)." +"This function registers a callback (C) for all event classes in the " +"C." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1746 +#: ../src/guestfs.pod:1849 msgid "" -"Note that libguestfs installs an L handler to try to clean up " -"handles that are open when the program exits. This means that this callback " -"might be called indirectly from L, which can cause unexpected " -"problems in higher-level languages (eg. if your HLL interpreter has already " -"been cleaned up by the time this is called, and if your callback then jumps " -"into some HLL function)." +"For example, to register for all log message events, you could call this " +"function with the bitmask C. " +"To register a single callback for all possible classes of events, use " +"C." msgstr "" -# type: =head2 -#. type: =head2 -#: ../src/guestfs.pod:1754 -msgid "guestfs_set_progress_callback" +#. type: textblock +#: ../src/guestfs.pod:1855 +msgid "C should always be passed as 0." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1857 +msgid "" +"C is an opaque pointer which is passed to the callback. You can use " +"it for any purpose." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1860 +msgid "" +"The return value is the event handle (an integer) which you can use to " +"delete the callback (see below)." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1863 +msgid "" +"If there is an error, this function returns C<-1>, and sets the error in the " +"handle in the usual way (see L etc.)" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1866 +msgid "" +"Callbacks remain in effect until they are deleted, or until the handle is " +"closed." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1869 +msgid "" +"In the case where multiple callbacks are registered for a particular event " +"class, all of the callbacks are called. The order in which multiple " +"callbacks are called is not defined." +msgstr "" + +#. type: =head3 +#: ../src/guestfs.pod:1873 +msgid "guestfs_delete_event_callback" msgstr "" -# type: verbatim #. type: verbatim -#: ../src/guestfs.pod:1756 +#: ../src/guestfs.pod:1875 #, no-wrap msgid "" -" typedef void (*guestfs_progress_cb) (guestfs_h *g, void *opaque,\n" -" int proc_nr, int serial,\n" -" uint64_t position, uint64_t total);\n" -" void guestfs_set_progress_callback (guestfs_h *g,\n" -" guestfs_progress_cb cb,\n" -" void *opaque);\n" +" void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n" "\n" msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1763 +#: ../src/guestfs.pod:1877 msgid "" -"Some long-running operations can generate progress messages. If this " -"callback is registered, then it will be called each time a progress message " -"is generated (usually two seconds after the operation started, and three " -"times per second thereafter until it completes, although the frequency may " -"change in future versions)." +"Delete a callback that was previously registered. C should be " +"the integer that was returned by a previous call to " +"C on the same handle." +msgstr "" + +#. type: =head3 +#: ../src/guestfs.pod:1881 +msgid "guestfs_event_callback" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:1883 +#, no-wrap +msgid "" +" typedef void (*guestfs_event_callback) (\n" +" guestfs_h *g,\n" +" void *opaque,\n" +" uint64_t event,\n" +" int event_handle,\n" +" int flags,\n" +" const char *buf, size_t buf_len,\n" +" const uint64_t *array, size_t array_len);\n" +"\n" msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1769 +#: ../src/guestfs.pod:1892 msgid "" -"The callback receives two numbers: C and C. The units of " -"C are not defined, although for some operations C may relate " -"in some way to the amount of data to be transferred (eg. in bytes or " -"megabytes), and C may be the portion which has been transferred." +"This is the type of the event callback function that you have to provide." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1775 -msgid "The only defined and stable parts of the API are:" +#: ../src/guestfs.pod:1895 +msgid "" +"The basic parameters are: the handle (C), the opaque user pointer " +"(C), the event class (eg. C), the event " +"handle, and C which in the current API you should ignore." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1781 +#: ../src/guestfs.pod:1899 msgid "" -"The callback can display to the user some type of progress bar or indicator " -"which shows the ratio of C:C." +"The remaining parameters contain the event payload (if any). Each event may " +"contain a payload, which usually relates to the event class, but for future " +"proofing your code should be written to handle any payload for any event " +"class." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1786 -msgid "0 E= C E= C" +#: ../src/guestfs.pod:1904 +msgid "" +"C and C contain a message buffer (if C, then " +"there is no message buffer). Note that this message buffer can contain " +"arbitrary 8 bit data, including NUL bytes." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1790 +#: ../src/guestfs.pod:1908 msgid "" -"If any progress notification is sent during a call, then a final progress " -"notification is always sent when C = C." +"C and C is an array of 64 bit unsigned integers. At the " +"moment this is only used for progress messages." +msgstr "" + +#. type: =head3 +#: ../src/guestfs.pod:1911 +msgid "EXAMPLE: CAPTURING LOG MESSAGES" msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1793 +#: ../src/guestfs.pod:1913 msgid "" -"This is to simplify caller code, so callers can easily set the progress " -"indicator to \"100%\" at the end of the operation, without requiring special " -"code to detect this case." +"One motivation for the generic event API was to allow GUI programs to " +"capture debug and other messages. In libguestfs E 1.8 these were sent " +"unconditionally to C." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1917 +msgid "" +"Events associated with log messages are: C, " +"C and C. (Note that error " +"messages are not events; you must capture error messages separately)." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1799 +#: ../src/guestfs.pod:1922 msgid "" -"The callback also receives the procedure number and serial number of the " -"call. These are only useful for debugging protocol issues, and the callback " -"can normally ignore them. The callback may want to print these numbers in " -"error messages or debugging messages." +"Programs have to set up a callback to capture the classes of events of " +"interest:" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:1925 +#, no-wrap +msgid "" +" int eh =\n" +" guestfs_set_event_callback\n" +" (g, message_callback,\n" +" GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n" +" GUESTFS_EVENT_TRACE,\n" +" 0, NULL) == -1)\n" +" if (eh == -1) {\n" +" // handle error in the usual way\n" +" }\n" +"\n" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1935 +msgid "" +"The callback can then direct messages to the appropriate place. In this " +"example, messages are directed to syslog:" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:1938 +#, no-wrap +msgid "" +" static void\n" +" message_callback (\n" +" guestfs_h *g,\n" +" void *opaque,\n" +" uint64_t event,\n" +" int event_handle,\n" +" int flags,\n" +" const char *buf, size_t buf_len,\n" +" const uint64_t *array, size_t array_len)\n" +" {\n" +" const int priority = LOG_USER|LOG_INFO;\n" +" if (buf_len > 0)\n" +" syslog (priority, \"event 0x%lx: %s\", event, buf);\n" +" }\n" +"\n" msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:1804 +#: ../src/guestfs.pod:1953 msgid "PRIVATE DATA AREA" msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1806 +#: ../src/guestfs.pod:1955 msgid "" -"You can attach named pieces of private data to the libguestfs handle, and " -"fetch them by name for the lifetime of the handle. This is called the " -"private data area and is only available from the C API." +"You can attach named pieces of private data to the libguestfs handle, fetch " +"them by name, and walk over them, for the lifetime of the handle. This is " +"called the private data area and is only available from the C API." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1810 +#: ../src/guestfs.pod:1960 msgid "To attach a named piece of data, use the following call:" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:1812 +#: ../src/guestfs.pod:1962 #, no-wrap msgid "" " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n" @@ -4032,7 +4262,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1814 +#: ../src/guestfs.pod:1964 msgid "" "C is the name to associate with this data, and C is an arbitrary " "pointer (which can be C). Any previous item with the same name is " @@ -4041,7 +4271,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1818 +#: ../src/guestfs.pod:1968 msgid "" "You can use any C you want, but names beginning with an underscore " "character are reserved for internal libguestfs purposes (for implementing " @@ -4051,13 +4281,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1823 +#: ../src/guestfs.pod:1973 msgid "To retrieve the pointer, use:" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:1825 +#: ../src/guestfs.pod:1975 #, no-wrap msgid "" " void *guestfs_get_private (guestfs_h *g, const char *key);\n" @@ -4066,43 +4296,198 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1827 +#: ../src/guestfs.pod:1977 msgid "" "This function returns C if either no data is found associated with " "C, or if the user previously set the C's C pointer to " "C." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1831 +#: ../src/guestfs.pod:1981 msgid "" "Libguestfs does not try to look at or interpret the C pointer in any " "way. As far as libguestfs is concerned, it need not be a valid pointer at " "all. In particular, libguestfs does I try to free the data when the " "handle is closed. If the data must be freed, then the caller must either " "free it before calling L or must set up a close callback to " -"do it (see L, and note that only one callback " -"can be registered for a handle)." +"do it (see L)." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1988 +msgid "To walk over all entries, use these two functions:" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:1990 +#, no-wrap +msgid "" +" void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n" +"\n" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:1992 +#, no-wrap +msgid "" +" void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n" +"\n" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:1994 +msgid "" +"C returns the first key, pointer pair (\"first\" does " +"not have any particular meaning -- keys are not returned in any defined " +"order). A pointer to the key is returned in C<*key_rtn> and the " +"corresponding data pointer is returned from the function. C is " +"returned if there are no keys stored in the handle." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2000 +msgid "" +"C returns the next key, pointer pair. The return " +"value of this function is also C is there are no further entries to " +"return." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2004 +msgid "Notes about walking over entries:" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2010 +msgid "" +"You must not call C while walking over the entries." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2015 +msgid "" +"The handle maintains an internal iterator which is reset when you call " +"C. This internal iterator is invalidated when you " +"call C." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2021 +msgid "If you have set the data pointer associated with a key to C, ie:" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:2023 +#, no-wrap +msgid "" +" guestfs_set_private (g, key, NULL);\n" +"\n" msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:1839 +#: ../src/guestfs.pod:2025 +msgid "then that C is not returned when walking." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2029 +msgid "" +"C<*key_rtn> is only valid until the next call to C, " +"C or C." +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2035 +msgid "" +"The following example code shows how to print all keys and data pointers " +"that are associated with the handle C:" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:2038 +#, no-wrap +msgid "" +" const char *key;\n" +" void *data = guestfs_first_private (g, &key);\n" +" while (data != NULL)\n" +" {\n" +" printf (\"key = %s, data = %p\\n\", key, data);\n" +" data = guestfs_next_private (g, &key);\n" +" }\n" +"\n" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2046 +msgid "" +"More commonly you are only interested in keys that begin with an application-" +"specific prefix C. Modify the loop like so:" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:2049 +#, no-wrap +msgid "" +" const char *key;\n" +" void *data = guestfs_first_private (g, &key);\n" +" while (data != NULL)\n" +" {\n" +" if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n" +" printf (\"key = %s, data = %p\\n\", key, data);\n" +" data = guestfs_next_private (g, &key);\n" +" }\n" +"\n" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2058 msgid "" -"The private data area is implemented using a hash table, and should be " -"reasonably efficient for moderate numbers of keys." +"If you need to modify keys while walking, then you have to jump back to the " +"beginning of the loop. For example, to delete all keys prefixed with " +"C:" +msgstr "" + +#. type: verbatim +#: ../src/guestfs.pod:2062 +#, no-wrap +msgid "" +" const char *key;\n" +" void *data;\n" +" again:\n" +" data = guestfs_first_private (g, &key);\n" +" while (data != NULL)\n" +" {\n" +" if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n" +" {\n" +" guestfs_set_private (g, key, NULL);\n" +" /* note that 'key' pointer is now invalid, and so is\n" +" the internal iterator */\n" +" goto again;\n" +" }\n" +" data = guestfs_next_private (g, &key);\n" +" }\n" +"\n" +msgstr "" + +#. type: textblock +#: ../src/guestfs.pod:2078 +msgid "" +"Note that the above loop is guaranteed to terminate because the keys are " +"being deleted, but other manipulations of keys within the loop might not " +"terminate unless you also maintain an indication of which keys have been " +"visited." msgstr "" # type: =end #. type: =end -#: ../src/guestfs.pod:1842 ../src/guestfs.pod:1847 +#: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088 msgid "html" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1844 +#: ../src/guestfs.pod:2085 msgid "" " " @@ -4110,13 +4495,13 @@ msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:1849 +#: ../src/guestfs.pod:2090 msgid "ARCHITECTURE" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1851 +#: ../src/guestfs.pod:2092 msgid "" "Internally, libguestfs is implemented by running an appliance (a special " "type of small virtual machine) using L. Qemu runs as a child " @@ -4125,7 +4510,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:1855 +#: ../src/guestfs.pod:2096 #, no-wrap msgid "" " ___________________\n" @@ -4152,7 +4537,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1875 +#: ../src/guestfs.pod:2116 msgid "" "The library, linked to the main program, creates the child process and hence " "the appliance in the L function." @@ -4160,7 +4545,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1878 +#: ../src/guestfs.pod:2119 msgid "" "Inside the appliance is a Linux kernel and a complete stack of userspace " "tools (such as LVM and ext2 programs) and a small controlling daemon called " @@ -4173,7 +4558,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1887 +#: ../src/guestfs.pod:2128 msgid "" "A common misunderstanding is that the appliance \"is\" the virtual machine. " "Although the disk image you are attached to might also be used by some " @@ -4185,19 +4570,19 @@ msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:1894 +#: ../src/guestfs.pod:2135 msgid "STATE MACHINE" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1896 +#: ../src/guestfs.pod:2137 msgid "libguestfs uses a state machine to model the child process:" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:1898 +#: ../src/guestfs.pod:2139 #, no-wrap msgid "" " |\n" @@ -4226,7 +4611,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1920 +#: ../src/guestfs.pod:2161 msgid "" "The normal transitions are (1) CONFIG (when the handle is created, but there " "is no child process), (2) LAUNCHING (when the child process is booting up), " @@ -4236,7 +4621,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1925 +#: ../src/guestfs.pod:2166 msgid "" "The guest may be killed by L, or may die " "asynchronously at any time (eg. due to some internal error), and that causes " @@ -4245,7 +4630,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1929 +#: ../src/guestfs.pod:2170 msgid "" "Configuration commands for qemu such as L can only be " "issued when in the CONFIG state." @@ -4253,7 +4638,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1932 +#: ../src/guestfs.pod:2173 msgid "" "The API offers one call that goes from CONFIG through LAUNCHING to READY. " "L blocks until the child process is READY to accept " @@ -4263,7 +4648,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1938 +#: ../src/guestfs.pod:2179 msgid "" "API actions such as L can only be issued when in the READY " "state. These API calls block waiting for the command to be carried out (ie. " @@ -4274,7 +4659,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1944 +#: ../src/guestfs.pod:2185 msgid "" "Finally, the child process sends asynchronous messages back to the main " "program, such as kernel log messages. You can register a callback to " @@ -4283,19 +4668,19 @@ msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:1948 +#: ../src/guestfs.pod:2189 msgid "INTERNALS" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs.pod:1950 +#: ../src/guestfs.pod:2191 msgid "COMMUNICATION PROTOCOL" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1952 +#: ../src/guestfs.pod:2193 msgid "" "Don't rely on using this protocol directly. This section documents how it " "currently works, but it may change at any time." @@ -4303,7 +4688,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1955 +#: ../src/guestfs.pod:2196 msgid "" "The protocol used to talk between the library and the daemon running inside " "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC " @@ -4312,7 +4697,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1959 +#: ../src/guestfs.pod:2200 msgid "" "The detailed format of structures is in C (note: " "this file is automatically generated)." @@ -4320,7 +4705,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1962 +#: ../src/guestfs.pod:2203 msgid "" "There are two broad cases, ordinary functions that don't have any C " "and C parameters, which are handled with very simple request/reply " @@ -4331,19 +4716,19 @@ msgstr "" # type: =head3 #. type: =head3 -#: ../src/guestfs.pod:1969 +#: ../src/guestfs.pod:2210 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1971 +#: ../src/guestfs.pod:2212 msgid "For ordinary functions, the request message is:" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:1973 +#: ../src/guestfs.pod:2214 #, no-wrap msgid "" " total length (header + arguments,\n" @@ -4355,7 +4740,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1978 +#: ../src/guestfs.pod:2219 msgid "" "The total length field allows the daemon to allocate a fixed size buffer " "into which it slurps the rest of the message. As a result, the total length " @@ -4365,7 +4750,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1984 +#: ../src/guestfs.pod:2225 msgid "" "Note also that many functions don't take any arguments, in which case the " "C_args> is completely omitted." @@ -4373,7 +4758,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1987 +#: ../src/guestfs.pod:2228 msgid "" "The header contains the procedure number (C) which is how the " "receiver knows what type of args structure to expect, or none at all." @@ -4381,7 +4766,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1991 +#: ../src/guestfs.pod:2232 msgid "" "For functions that take optional arguments, the optional arguments are " "encoded in the C_args> structure in the same way as ordinary " @@ -4394,13 +4779,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:1999 +#: ../src/guestfs.pod:2240 msgid "The reply message for ordinary functions is:" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:2001 +#: ../src/guestfs.pod:2242 #, no-wrap msgid "" " total length (header + ret,\n" @@ -4412,7 +4797,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2006 +#: ../src/guestfs.pod:2247 msgid "" "As above the C_ret> structure may be completely omitted for " "functions that return no formal return values." @@ -4420,14 +4805,14 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2009 +#: ../src/guestfs.pod:2250 msgid "" "As above the total length of the reply is limited to C." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2012 +#: ../src/guestfs.pod:2253 msgid "" "In the case of an error, a flag is set in the header, and the reply message " "is slightly changed:" @@ -4435,7 +4820,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:2015 +#: ../src/guestfs.pod:2256 #, no-wrap msgid "" " total length (header + error,\n" @@ -4447,7 +4832,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2020 +#: ../src/guestfs.pod:2261 msgid "" "The C structure contains the error message as a " "string." @@ -4455,13 +4840,13 @@ msgstr "" # type: =head3 #. type: =head3 -#: ../src/guestfs.pod:2023 +#: ../src/guestfs.pod:2264 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2025 +#: ../src/guestfs.pod:2266 msgid "" "A C parameter indicates that we transfer a file I the guest. " "The normal request message is sent (see above). However this is followed by " @@ -4470,7 +4855,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:2029 +#: ../src/guestfs.pod:2270 #, no-wrap msgid "" " total length (header + arguments,\n" @@ -4485,13 +4870,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2037 +#: ../src/guestfs.pod:2278 msgid "The \"sequence of chunks\" is:" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:2039 +#: ../src/guestfs.pod:2280 #, no-wrap msgid "" " length of chunk (not including length word itself)\n" @@ -4506,7 +4891,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2047 +#: ../src/guestfs.pod:2288 msgid "" "The final chunk has the C field set to zero. Additionally a flag " "is set in the final chunk to indicate either successful completion or early " @@ -4515,7 +4900,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2051 +#: ../src/guestfs.pod:2292 msgid "" "At time of writing there are no functions that have more than one FileIn " "parameter. However this is (theoretically) supported, by sending the " @@ -4525,7 +4910,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2056 +#: ../src/guestfs.pod:2297 msgid "" "Both the library (sender) I the daemon (receiver) may cancel the " "transfer. The library does this by sending a chunk with a special flag set " @@ -4535,7 +4920,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2062 +#: ../src/guestfs.pod:2303 msgid "" "The daemon may also cancel. It does this by writing a special word " "C to the socket. The library listens for this during " @@ -4548,7 +4933,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2071 +#: ../src/guestfs.pod:2312 msgid "" "This protocol allows the transfer of arbitrary sized files (no 32 bit " "limit), and also files where the size is not known in advance (eg. from " @@ -4559,13 +4944,13 @@ msgstr "" # type: =head3 #. type: =head3 -#: ../src/guestfs.pod:2077 +#: ../src/guestfs.pod:2318 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2079 +#: ../src/guestfs.pod:2320 msgid "" "The protocol for FileOut parameters is exactly the same as for FileIn " "parameters, but with the roles of daemon and library reversed." @@ -4573,7 +4958,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:2082 +#: ../src/guestfs.pod:2323 #, no-wrap msgid "" " total length (header + ret,\n" @@ -4588,13 +4973,13 @@ msgstr "" # type: =head3 #. type: =head3 -#: ../src/guestfs.pod:2090 +#: ../src/guestfs.pod:2331 msgid "INITIAL MESSAGE" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2092 +#: ../src/guestfs.pod:2333 msgid "" "When the daemon launches it sends an initial word (C) " "which indicates that the guest and daemon is alive. This is what L, followed by a fixed size progress message." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:2102 +#: ../src/guestfs.pod:2343 msgid "" -"The library turns them into progress callbacks (see " -"C) if there is a callback registered, or " -"discards them if not." +"The library turns them into progress callbacks (see L) if there is a callback registered, or discards them " +"if not." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2106 +#: ../src/guestfs.pod:2347 msgid "" "The daemon self-limits the frequency of progress messages it sends (see " "C). Not all calls generate progress " @@ -4636,13 +5020,13 @@ msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:2110 +#: ../src/guestfs.pod:2351 msgid "LIBGUESTFS VERSION NUMBERS" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2112 +#: ../src/guestfs.pod:2353 msgid "" "Since April 2010, libguestfs has started to make separate development and " "stable releases, along with corresponding branches in our git repository. " @@ -4651,7 +5035,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:2117 +#: ../src/guestfs.pod:2358 #, no-wrap msgid "" " even numbers for stable: 1.2.x, 1.4.x, ...\n" @@ -4669,13 +5053,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2128 +#: ../src/guestfs.pod:2369 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2130 +#: ../src/guestfs.pod:2371 msgid "" "As time passes we cherry pick fixes from the development branch and backport " "those into the stable branch, the effect being that the stable branch should " @@ -4686,13 +5070,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2136 +#: ../src/guestfs.pod:2377 msgid "Our criteria for backporting changes are:" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2142 +#: ../src/guestfs.pod:2383 msgid "" "Documentation changes which don't affect any code are backported unless the " "documentation refers to a future feature which is not in stable." @@ -4700,7 +5084,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2148 +#: ../src/guestfs.pod:2389 msgid "" "Bug fixes which are not controversial, fix obvious problems, and have been " "well tested are backported." @@ -4708,7 +5092,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2153 +#: ../src/guestfs.pod:2394 msgid "" "Simple rearrangements of code which shouldn't affect how it works get " "backported. This is so that the code in the two branches doesn't get too " @@ -4717,7 +5101,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2159 +#: ../src/guestfs.pod:2400 msgid "" "We I backport new features, new APIs, new tools etc, except in one " "exceptional case: the new feature is required in order to implement an " @@ -4726,7 +5110,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2165 +#: ../src/guestfs.pod:2406 msgid "" "A new stable branch starts when we think the new features in development are " "substantial and compelling enough over the current stable branch to warrant " @@ -4737,17 +5121,17 @@ msgid "" msgstr "" #. type: =head1 -#: ../src/guestfs.pod:2173 +#: ../src/guestfs.pod:2414 msgid "EXTENDING LIBGUESTFS" msgstr "" #. type: =head2 -#: ../src/guestfs.pod:2175 +#: ../src/guestfs.pod:2416 msgid "ADDING A NEW API ACTION" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2177 +#: ../src/guestfs.pod:2418 msgid "" "Large amounts of boilerplate code in libguestfs (RPC, bindings, " "documentation) are generated, and this makes it easy to extend the " @@ -4755,19 +5139,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2181 +#: ../src/guestfs.pod:2422 msgid "To add a new API action there are two changes:" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2187 +#: ../src/guestfs.pod:2428 msgid "" "You need to add a description of the call (name, parameters, return type, " "tests, documentation) to C." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2190 +#: ../src/guestfs.pod:2431 msgid "" "There are two sorts of API action, depending on whether the call goes " "through to the daemon in the appliance, or is serviced entirely by the " @@ -4778,7 +5162,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2198 +#: ../src/guestfs.pod:2439 msgid "" "Most new actions are of the first type, and get added to the " "C list. Each function has a unique procedure number used " @@ -4788,7 +5172,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2204 +#: ../src/guestfs.pod:2445 msgid "" "For library-only actions of the second type, add to the " "C list. Since these functions are serviced by the " @@ -4798,36 +5182,36 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2212 +#: ../src/guestfs.pod:2453 msgid "Implement the action (in C):" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2214 +#: ../src/guestfs.pod:2455 msgid "" "For daemon actions, implement the function CnameE> in the " "C directory." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2217 +#: ../src/guestfs.pod:2458 msgid "" "For library actions, implement the function CnameE> " "(note: double underscore) in the C directory." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2220 +#: ../src/guestfs.pod:2461 msgid "In either case, use another function as an example of what to do." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2224 +#: ../src/guestfs.pod:2465 msgid "After making these changes, use C to compile." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2226 +#: ../src/guestfs.pod:2467 msgid "" "Note that you don't need to implement the RPC, language bindings, manual " "pages or anything else. It's all automatically generated from the OCaml " @@ -4835,12 +5219,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs.pod:2230 +#: ../src/guestfs.pod:2471 msgid "ADDING TESTS FOR AN API ACTION" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2232 +#: ../src/guestfs.pod:2473 msgid "" "You can supply zero or as many tests as you want per API call. The tests " "can either be added as part of the API description (C." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2241 +#: ../src/guestfs.pod:2482 msgid "The test environment has 4 block devices:" msgstr "" #. type: =item -#: ../src/guestfs.pod:2245 +#: ../src/guestfs.pod:2486 msgid "C 500MB" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2247 +#: ../src/guestfs.pod:2488 msgid "General block device for testing." msgstr "" #. type: =item -#: ../src/guestfs.pod:2249 +#: ../src/guestfs.pod:2490 msgid "C 50MB" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2251 +#: ../src/guestfs.pod:2492 msgid "" "C is an ext2 filesystem used for testing filesystem write " "operations." msgstr "" #. type: =item -#: ../src/guestfs.pod:2254 +#: ../src/guestfs.pod:2495 msgid "C 10MB" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2256 +#: ../src/guestfs.pod:2497 msgid "Used in a few tests where two block devices are needed." msgstr "" #. type: =item -#: ../src/guestfs.pod:2258 +#: ../src/guestfs.pod:2499 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2260 +#: ../src/guestfs.pod:2501 msgid "ISO with fixed content (see C)." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2264 +#: ../src/guestfs.pod:2505 msgid "" "To be able to run the tests in a reasonable amount of time, the libguestfs " "appliance and block devices are reused between tests. So don't try testing " @@ -4912,7 +5296,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2268 +#: ../src/guestfs.pod:2509 msgid "" "Each test starts with an initial scenario, selected using one of the " "C expressions, described in C. These " @@ -4922,7 +5306,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2274 +#: ../src/guestfs.pod:2515 msgid "" "You can add a prerequisite clause to any individual test. This is a run-" "time check, which, if it fails, causes the test to be skipped. Useful if " @@ -4932,14 +5316,14 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2280 +#: ../src/guestfs.pod:2521 msgid "" "In addition, packagers can skip individual tests by setting environment " "variables before running C." msgstr "" #. type: verbatim -#: ../src/guestfs.pod:2283 +#: ../src/guestfs.pod:2524 #, no-wrap msgid "" " SKIP_TEST__=1\n" @@ -4947,17 +5331,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2285 +#: ../src/guestfs.pod:2526 msgid "eg: C skips test #3 of L." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2287 +#: ../src/guestfs.pod:2528 msgid "or:" msgstr "" #. type: verbatim -#: ../src/guestfs.pod:2289 +#: ../src/guestfs.pod:2530 #, no-wrap msgid "" " SKIP_TEST_=1\n" @@ -4965,17 +5349,17 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2291 +#: ../src/guestfs.pod:2532 msgid "eg: C skips all L tests." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2293 +#: ../src/guestfs.pod:2534 msgid "Packagers can run only certain tests by setting for example:" msgstr "" #. type: verbatim -#: ../src/guestfs.pod:2295 +#: ../src/guestfs.pod:2536 #, no-wrap msgid "" " TEST_ONLY=\"vfs_type zerofree\"\n" @@ -4983,29 +5367,29 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2297 +#: ../src/guestfs.pod:2538 msgid "" "See C for more details of how these environment variables " "work." msgstr "" #. type: =head2 -#: ../src/guestfs.pod:2300 +#: ../src/guestfs.pod:2541 msgid "DEBUGGING NEW API ACTIONS" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2302 +#: ../src/guestfs.pod:2543 msgid "Test new actions work before submitting them." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2304 +#: ../src/guestfs.pod:2545 msgid "You can use guestfish to try out new commands." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2306 +#: ../src/guestfs.pod:2547 msgid "" "Debugging the daemon is a problem because it runs inside a minimal " "environment. However you can fprintf messages in the daemon to stderr, and " @@ -5013,12 +5397,12 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs.pod:2310 +#: ../src/guestfs.pod:2551 msgid "FORMATTING CODE AND OTHER CONVENTIONS" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2312 +#: ../src/guestfs.pod:2553 msgid "" "Our C source code generally adheres to some basic code-formatting " "conventions. The existing code base is not totally consistent on this " @@ -5028,14 +5412,14 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2318 +#: ../src/guestfs.pod:2559 msgid "" "If you use Emacs, add the following to one of one of your start-up files (e." "g., ~/.emacs), to help ensure that you get indentation right:" msgstr "" #. type: verbatim -#: ../src/guestfs.pod:2321 +#: ../src/guestfs.pod:2562 #, no-wrap msgid "" " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n" @@ -5051,7 +5435,7 @@ msgid "" msgstr "" #. type: verbatim -#: ../src/guestfs.pod:2331 +#: ../src/guestfs.pod:2572 #, no-wrap msgid "" " ;;; When editing C sources in libguestfs, use this style.\n" @@ -5069,12 +5453,12 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2343 +#: ../src/guestfs.pod:2584 msgid "Enable warnings when compiling (and fix any problems this finds):" msgstr "" #. type: verbatim -#: ../src/guestfs.pod:2346 +#: ../src/guestfs.pod:2587 #, no-wrap msgid "" " ./configure --enable-gcc-warnings\n" @@ -5082,12 +5466,12 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2348 +#: ../src/guestfs.pod:2589 msgid "Useful targets are:" msgstr "" #. type: verbatim -#: ../src/guestfs.pod:2350 +#: ../src/guestfs.pod:2591 #, no-wrap msgid "" " make syntax-check # checks the syntax of the C code\n" @@ -5096,36 +5480,36 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs.pod:2353 +#: ../src/guestfs.pod:2594 msgid "DAEMON CUSTOM PRINTF FORMATTERS" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2355 +#: ../src/guestfs.pod:2596 msgid "" "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, " "which are used to do shell quoting." msgstr "" #. type: =item -#: ../src/guestfs.pod:2360 +#: ../src/guestfs.pod:2601 msgid "%Q" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2362 +#: ../src/guestfs.pod:2603 msgid "" "Simple shell quoted string. Any spaces or other shell characters are " "escaped for you." msgstr "" #. type: =item -#: ../src/guestfs.pod:2365 +#: ../src/guestfs.pod:2606 msgid "%R" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2367 +#: ../src/guestfs.pod:2608 msgid "" "Same as C<%Q> except the string is treated as a path which is prefixed by " "the sysroot." @@ -5133,12 +5517,12 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2372 ../fish/guestfish.pod:240 ../fish/guestfish.pod:599 +#: ../src/guestfs.pod:2613 ../fish/guestfish.pod:240 ../fish/guestfish.pod:599 msgid "For example:" msgstr "" #. type: verbatim -#: ../src/guestfs.pod:2374 +#: ../src/guestfs.pod:2615 #, no-wrap msgid "" " asprintf (&cmd, \"cat %R\", path);\n" @@ -5146,12 +5530,12 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2376 +#: ../src/guestfs.pod:2617 msgid "would produce C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2378 +#: ../src/guestfs.pod:2619 msgid "" "I Do I use these when you are passing parameters to the C functions. These parameters do NOT need to be quoted because " @@ -5160,29 +5544,29 @@ msgid "" msgstr "" #. type: =head2 -#: ../src/guestfs.pod:2384 +#: ../src/guestfs.pod:2625 msgid "SUBMITTING YOUR NEW API ACTIONS" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2386 +#: ../src/guestfs.pod:2627 msgid "" "Submit patches to the mailing list: L and CC to L." msgstr "" #. type: =head2 -#: ../src/guestfs.pod:2390 +#: ../src/guestfs.pod:2631 msgid "INTERNATIONALIZATION (I18N) SUPPORT" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2392 +#: ../src/guestfs.pod:2633 msgid "We support i18n (gettext anyhow) in the library." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2394 +#: ../src/guestfs.pod:2635 msgid "" "However many messages come from the daemon, and we don't translate those at " "the moment. One reason is that the appliance generally has all locale files " @@ -5191,98 +5575,98 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2400 +#: ../src/guestfs.pod:2641 msgid "" "Debugging messages are never translated, since they are intended for the " "programmers." msgstr "" #. type: =head2 -#: ../src/guestfs.pod:2403 +#: ../src/guestfs.pod:2644 msgid "SOURCE CODE SUBDIRECTORIES" msgstr "" #. type: =item -#: ../src/guestfs.pod:2407 ../src/guestfs-actions.pod:5686 -#: ../fish/guestfish-actions.pod:3808 +#: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:5721 +#: ../fish/guestfish-actions.pod:3838 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2409 +#: ../src/guestfs.pod:2650 msgid "The libguestfs appliance, build scripts and so on." msgstr "" #. type: =item -#: ../src/guestfs.pod:2411 +#: ../src/guestfs.pod:2652 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2413 +#: ../src/guestfs.pod:2654 msgid "Automated tests of the C API." msgstr "" #. type: =item -#: ../src/guestfs.pod:2415 +#: ../src/guestfs.pod:2656 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2417 +#: ../src/guestfs.pod:2658 msgid "" "The L, L and L commands and " "documentation." msgstr "" #. type: =item -#: ../src/guestfs.pod:2420 +#: ../src/guestfs.pod:2661 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2422 +#: ../src/guestfs.pod:2663 msgid "Outside contributions, experimental parts." msgstr "" #. type: =item -#: ../src/guestfs.pod:2424 +#: ../src/guestfs.pod:2665 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2426 +#: ../src/guestfs.pod:2667 msgid "" "The daemon that runs inside the libguestfs appliance and carries out actions." msgstr "" #. type: =item -#: ../src/guestfs.pod:2429 +#: ../src/guestfs.pod:2670 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2431 +#: ../src/guestfs.pod:2672 msgid "L command and documentation." msgstr "" #. type: =item -#: ../src/guestfs.pod:2433 +#: ../src/guestfs.pod:2674 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2435 +#: ../src/guestfs.pod:2676 msgid "C API example code." msgstr "" #. type: =item -#: ../src/guestfs.pod:2437 +#: ../src/guestfs.pod:2678 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2439 +#: ../src/guestfs.pod:2680 msgid "" "L, the command-line shell, and various shell scripts built on " "top such as L, L, L, " @@ -5290,90 +5674,90 @@ msgid "" msgstr "" #. type: =item -#: ../src/guestfs.pod:2443 +#: ../src/guestfs.pod:2684 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2445 +#: ../src/guestfs.pod:2686 msgid "" "L, FUSE (userspace filesystem) built on top of libguestfs." msgstr "" #. type: =item -#: ../src/guestfs.pod:2447 +#: ../src/guestfs.pod:2688 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2449 +#: ../src/guestfs.pod:2690 msgid "" "The crucially important generator, used to automatically generate large " "amounts of boilerplate C code for things like RPC and bindings." msgstr "" #. type: =item -#: ../src/guestfs.pod:2452 +#: ../src/guestfs.pod:2693 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2454 +#: ../src/guestfs.pod:2695 msgid "Files used by the test suite." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2456 +#: ../src/guestfs.pod:2697 msgid "Some \"phony\" guest images which we test against." msgstr "" #. type: =item -#: ../src/guestfs.pod:2458 +#: ../src/guestfs.pod:2699 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2460 +#: ../src/guestfs.pod:2701 msgid "L, the virtual machine image inspector." msgstr "" #. type: =item -#: ../src/guestfs.pod:2462 +#: ../src/guestfs.pod:2703 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2464 +#: ../src/guestfs.pod:2705 msgid "Logo used on the website. The fish is called Arthur by the way." msgstr "" #. type: =item -#: ../src/guestfs.pod:2466 +#: ../src/guestfs.pod:2707 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2468 +#: ../src/guestfs.pod:2709 msgid "M4 macros used by autoconf." msgstr "" #. type: =item -#: ../src/guestfs.pod:2470 +#: ../src/guestfs.pod:2711 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2472 +#: ../src/guestfs.pod:2713 msgid "Translations of simple gettext strings." msgstr "" #. type: =item -#: ../src/guestfs.pod:2474 +#: ../src/guestfs.pod:2715 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2476 +#: ../src/guestfs.pod:2717 msgid "" "The build infrastructure and PO files for translations of manpages and POD " "files. Eventually this will be combined with the C directory, but that " @@ -5381,130 +5765,130 @@ msgid "" msgstr "" #. type: =item -#: ../src/guestfs.pod:2480 +#: ../src/guestfs.pod:2721 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2482 +#: ../src/guestfs.pod:2723 msgid "Regression tests." msgstr "" #. type: =item -#: ../src/guestfs.pod:2484 +#: ../src/guestfs.pod:2725 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2486 +#: ../src/guestfs.pod:2727 msgid "L command and documentation." msgstr "" #. type: =item -#: ../src/guestfs.pod:2488 +#: ../src/guestfs.pod:2729 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2490 +#: ../src/guestfs.pod:2731 msgid "Source code to the C library." msgstr "" #. type: =item -#: ../src/guestfs.pod:2492 +#: ../src/guestfs.pod:2733 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2494 +#: ../src/guestfs.pod:2735 msgid "Command line tools written in Perl (L and many others)." msgstr "" #. type: =item -#: ../src/guestfs.pod:2496 +#: ../src/guestfs.pod:2737 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2498 +#: ../src/guestfs.pod:2739 msgid "" "Test tool for end users to test if their qemu/kernel combination will work " "with libguestfs." msgstr "" #. type: =item -#: ../src/guestfs.pod:2501 +#: ../src/guestfs.pod:2742 msgid "C" msgstr "" #. type: =item -#: ../src/guestfs.pod:2503 +#: ../src/guestfs.pod:2744 msgid "C" msgstr "" #. type: =item -#: ../src/guestfs.pod:2505 +#: ../src/guestfs.pod:2746 msgid "C" msgstr "" #. type: =item -#: ../src/guestfs.pod:2507 +#: ../src/guestfs.pod:2748 msgid "C" msgstr "" #. type: =item -#: ../src/guestfs.pod:2509 +#: ../src/guestfs.pod:2750 msgid "C" msgstr "" #. type: =item -#: ../src/guestfs.pod:2511 +#: ../src/guestfs.pod:2752 msgid "C" msgstr "" #. type: =item -#: ../src/guestfs.pod:2513 +#: ../src/guestfs.pod:2754 msgid "C" msgstr "" #. type: =item -#: ../src/guestfs.pod:2515 +#: ../src/guestfs.pod:2756 msgid "C" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2517 +#: ../src/guestfs.pod:2758 msgid "Language bindings." msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:2521 ../fish/guestfish.pod:996 +#: ../src/guestfs.pod:2762 ../fish/guestfish.pod:996 #: ../test-tool/libguestfs-test-tool.pod:104 ../tools/virt-edit.pl:330 msgid "ENVIRONMENT VARIABLES" msgstr "" # type: =item #. type: =item -#: ../src/guestfs.pod:2525 ../fish/guestfish.pod:1022 +#: ../src/guestfs.pod:2766 ../fish/guestfish.pod:1022 msgid "LIBGUESTFS_APPEND" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2527 ../fish/guestfish.pod:1024 +#: ../src/guestfs.pod:2768 ../fish/guestfish.pod:1024 msgid "Pass additional options to the guest kernel." msgstr "" # type: =item #. type: =item -#: ../src/guestfs.pod:2529 ../fish/guestfish.pod:1026 +#: ../src/guestfs.pod:2770 ../fish/guestfish.pod:1026 msgid "LIBGUESTFS_DEBUG" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2531 +#: ../src/guestfs.pod:2772 msgid "" "Set C to enable verbose messages. This has the same " "effect as calling C." @@ -5512,20 +5896,20 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs.pod:2534 ../fish/guestfish.pod:1031 +#: ../src/guestfs.pod:2775 ../fish/guestfish.pod:1031 msgid "LIBGUESTFS_MEMSIZE" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2536 ../fish/guestfish.pod:1033 +#: ../src/guestfs.pod:2777 ../fish/guestfish.pod:1033 msgid "" "Set the memory allocated to the qemu process, in megabytes. For example:" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs.pod:2539 ../fish/guestfish.pod:1036 +#: ../src/guestfs.pod:2780 ../fish/guestfish.pod:1036 #, no-wrap msgid "" " LIBGUESTFS_MEMSIZE=700\n" @@ -5534,27 +5918,26 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs.pod:2541 ../fish/guestfish.pod:1038 +#: ../src/guestfs.pod:2782 ../fish/guestfish.pod:1038 msgid "LIBGUESTFS_PATH" msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs.pod:2543 +#: ../src/guestfs.pod:2784 msgid "" -"Set the path that libguestfs uses to search for kernel and initrd.img. See " -"the discussion of paths in section PATH above." +"Set the path that libguestfs uses to search for a supermin appliance. See " +"the discussion of paths in section L above." msgstr "" # type: =item #. type: =item -#: ../src/guestfs.pod:2546 ../fish/guestfish.pod:1043 +#: ../src/guestfs.pod:2787 ../fish/guestfish.pod:1043 msgid "LIBGUESTFS_QEMU" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2548 ../fish/guestfish.pod:1045 +#: ../src/guestfs.pod:2789 ../fish/guestfish.pod:1045 msgid "" "Set the default qemu binary that libguestfs uses. If not set, then the qemu " "which was found at compile time by the configure script is used." @@ -5562,19 +5945,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2552 +#: ../src/guestfs.pod:2793 msgid "See also L above." msgstr "" # type: =item #. type: =item -#: ../src/guestfs.pod:2554 ../fish/guestfish.pod:1049 +#: ../src/guestfs.pod:2795 ../fish/guestfish.pod:1049 msgid "LIBGUESTFS_TRACE" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2556 +#: ../src/guestfs.pod:2797 msgid "" "Set C to enable command traces. This has the same " "effect as calling C." @@ -5582,19 +5965,19 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs.pod:2559 ../fish/guestfish.pod:1058 +#: ../src/guestfs.pod:2800 ../fish/guestfish.pod:1058 msgid "TMPDIR" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2561 ../fish/guestfish.pod:1060 +#: ../src/guestfs.pod:2802 ../fish/guestfish.pod:1060 msgid "" "Location of temporary directory, defaults to C except for the cached " "supermin appliance which defaults to C." msgstr "" #. type: textblock -#: ../src/guestfs.pod:2564 ../fish/guestfish.pod:1063 +#: ../src/guestfs.pod:2805 ../fish/guestfish.pod:1063 msgid "" "If libguestfs was compiled to use the supermin appliance then the real " "appliance is cached in this directory, shared between all handles belonging " @@ -5604,17 +5987,17 @@ msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:2572 ../fish/guestfish.pod:1121 +#: ../src/guestfs.pod:2813 ../fish/guestfish.pod:1121 #: ../test-tool/libguestfs-test-tool.pod:109 ../fuse/guestmount.pod:238 #: ../tools/virt-edit.pl:350 ../tools/virt-win-reg.pl:572 -#: ../tools/virt-resize.pl:1483 ../tools/virt-list-filesystems.pl:189 +#: ../tools/virt-resize.pl:1489 ../tools/virt-list-filesystems.pl:189 #: ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539 #: ../tools/virt-list-partitions.pl:257 msgid "SEE ALSO" msgstr "" #. type: textblock -#: ../src/guestfs.pod:2574 +#: ../src/guestfs.pod:2815 msgid "" "L, L, L, L, L, L, L, L, L, L, L, L." @@ -5635,20 +6018,20 @@ msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:2608 ../tools/virt-win-reg.pl:587 +#: ../src/guestfs.pod:2849 ../tools/virt-win-reg.pl:587 #: ../tools/virt-make-fs.pl:553 msgid "BUGS" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2610 +#: ../src/guestfs.pod:2851 msgid "To get a list of bugs against libguestfs use this link:" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2612 +#: ../src/guestfs.pod:2853 msgid "" "L" @@ -5656,13 +6039,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2614 +#: ../src/guestfs.pod:2855 msgid "To report a new bug against libguestfs use this link:" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2616 +#: ../src/guestfs.pod:2857 msgid "" "L" @@ -5670,31 +6053,31 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2618 +#: ../src/guestfs.pod:2859 msgid "When reporting a bug, please check:" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2624 +#: ../src/guestfs.pod:2865 msgid "That the bug hasn't been reported already." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2628 +#: ../src/guestfs.pod:2869 msgid "That you are testing a recent version." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2632 +#: ../src/guestfs.pod:2873 msgid "Describe the bug accurately, and give a way to reproduce it." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2636 +#: ../src/guestfs.pod:2877 msgid "" "Run libguestfs-test-tool and paste the B output into the " "bug report." @@ -5702,24 +6085,24 @@ msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:2641 ../fish/guestfish.pod:1144 +#: ../src/guestfs.pod:2882 ../fish/guestfish.pod:1144 #: ../test-tool/libguestfs-test-tool.pod:115 ../fuse/guestmount.pod:249 msgid "AUTHORS" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2643 ../fish/guestfish.pod:1146 +#: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1146 #: ../test-tool/libguestfs-test-tool.pod:117 ../fuse/guestmount.pod:251 msgid "Richard W.M. Jones (C)" msgstr "" # type: =head1 #. type: =head1 -#: ../src/guestfs.pod:2645 ../fish/guestfish.pod:1148 +#: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1148 #: ../test-tool/libguestfs-test-tool.pod:119 ../fuse/guestmount.pod:253 #: ../tools/virt-edit.pl:368 ../tools/virt-win-reg.pl:602 -#: ../tools/virt-resize.pl:1508 ../tools/virt-list-filesystems.pl:206 +#: ../tools/virt-resize.pl:1514 ../tools/virt-list-filesystems.pl:206 #: ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568 #: ../tools/virt-list-partitions.pl:273 msgid "COPYRIGHT" @@ -5727,14 +6110,14 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2647 ../fish/guestfish.pod:1150 +#: ../src/guestfs.pod:2888 ../fish/guestfish.pod:1150 #: ../fuse/guestmount.pod:255 msgid "Copyright (C) 2009-2010 Red Hat Inc. L" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2650 +#: ../src/guestfs.pod:2891 msgid "" "This library is free software; you can redistribute it and/or modify it " "under the terms of the GNU Lesser General Public License as published by the " @@ -5744,7 +6127,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2655 +#: ../src/guestfs.pod:2896 msgid "" "This library is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -5754,7 +6137,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs.pod:2660 +#: ../src/guestfs.pod:2901 msgid "" "You should have received a copy of the GNU Lesser General Public License " "along with this library; if not, write to the Free Software Foundation, " @@ -5832,73 +6215,73 @@ msgstr "" #: ../src/guestfs-actions.pod:1690 ../src/guestfs-actions.pod:1712 #: ../src/guestfs-actions.pod:1799 ../src/guestfs-actions.pod:2261 #: ../src/guestfs-actions.pod:2405 ../src/guestfs-actions.pod:2466 -#: ../src/guestfs-actions.pod:2501 ../src/guestfs-actions.pod:3336 -#: ../src/guestfs-actions.pod:3351 ../src/guestfs-actions.pod:3371 -#: ../src/guestfs-actions.pod:3526 ../src/guestfs-actions.pod:3540 -#: ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:3567 -#: ../src/guestfs-actions.pod:3582 ../src/guestfs-actions.pod:3618 -#: ../src/guestfs-actions.pod:3690 ../src/guestfs-actions.pod:3710 -#: ../src/guestfs-actions.pod:3727 ../src/guestfs-actions.pod:3750 -#: ../src/guestfs-actions.pod:3773 ../src/guestfs-actions.pod:3805 -#: ../src/guestfs-actions.pod:3824 ../src/guestfs-actions.pod:3843 -#: ../src/guestfs-actions.pod:3878 ../src/guestfs-actions.pod:3890 -#: ../src/guestfs-actions.pod:3926 ../src/guestfs-actions.pod:3942 -#: ../src/guestfs-actions.pod:3955 ../src/guestfs-actions.pod:3970 -#: ../src/guestfs-actions.pod:3987 ../src/guestfs-actions.pod:4080 -#: ../src/guestfs-actions.pod:4100 ../src/guestfs-actions.pod:4113 -#: ../src/guestfs-actions.pod:4164 ../src/guestfs-actions.pod:4182 -#: ../src/guestfs-actions.pod:4200 ../src/guestfs-actions.pod:4216 -#: ../src/guestfs-actions.pod:4230 ../src/guestfs-actions.pod:4244 -#: ../src/guestfs-actions.pod:4261 ../src/guestfs-actions.pod:4276 -#: ../src/guestfs-actions.pod:4296 ../src/guestfs-actions.pod:4354 -#: ../src/guestfs-actions.pod:4427 ../src/guestfs-actions.pod:4458 -#: ../src/guestfs-actions.pod:4477 ../src/guestfs-actions.pod:4496 -#: ../src/guestfs-actions.pod:4508 ../src/guestfs-actions.pod:4525 -#: ../src/guestfs-actions.pod:4538 ../src/guestfs-actions.pod:4553 -#: ../src/guestfs-actions.pod:4568 ../src/guestfs-actions.pod:4603 -#: ../src/guestfs-actions.pod:4618 ../src/guestfs-actions.pod:4638 -#: ../src/guestfs-actions.pod:4652 ../src/guestfs-actions.pod:4669 -#: ../src/guestfs-actions.pod:4718 ../src/guestfs-actions.pod:4755 -#: ../src/guestfs-actions.pod:4769 ../src/guestfs-actions.pod:4797 -#: ../src/guestfs-actions.pod:4814 ../src/guestfs-actions.pod:4832 -#: ../src/guestfs-actions.pod:4966 ../src/guestfs-actions.pod:5023 -#: ../src/guestfs-actions.pod:5045 ../src/guestfs-actions.pod:5063 -#: ../src/guestfs-actions.pod:5095 ../src/guestfs-actions.pod:5161 -#: ../src/guestfs-actions.pod:5178 ../src/guestfs-actions.pod:5191 -#: ../src/guestfs-actions.pod:5205 ../src/guestfs-actions.pod:5494 -#: ../src/guestfs-actions.pod:5513 ../src/guestfs-actions.pod:5532 -#: ../src/guestfs-actions.pod:5544 ../src/guestfs-actions.pod:5556 -#: ../src/guestfs-actions.pod:5570 ../src/guestfs-actions.pod:5582 -#: ../src/guestfs-actions.pod:5596 ../src/guestfs-actions.pod:5612 -#: ../src/guestfs-actions.pod:5633 ../src/guestfs-actions.pod:5652 -#: ../src/guestfs-actions.pod:5671 ../src/guestfs-actions.pod:5701 -#: ../src/guestfs-actions.pod:5717 ../src/guestfs-actions.pod:5740 -#: ../src/guestfs-actions.pod:5758 ../src/guestfs-actions.pod:5777 -#: ../src/guestfs-actions.pod:5798 ../src/guestfs-actions.pod:5817 -#: ../src/guestfs-actions.pod:5834 ../src/guestfs-actions.pod:5862 -#: ../src/guestfs-actions.pod:5886 ../src/guestfs-actions.pod:5905 -#: ../src/guestfs-actions.pod:5929 ../src/guestfs-actions.pod:5944 -#: ../src/guestfs-actions.pod:5959 ../src/guestfs-actions.pod:5978 -#: ../src/guestfs-actions.pod:6015 ../src/guestfs-actions.pod:6038 -#: ../src/guestfs-actions.pod:6064 ../src/guestfs-actions.pod:6172 -#: ../src/guestfs-actions.pod:6293 ../src/guestfs-actions.pod:6305 -#: ../src/guestfs-actions.pod:6318 ../src/guestfs-actions.pod:6331 -#: ../src/guestfs-actions.pod:6353 ../src/guestfs-actions.pod:6366 -#: ../src/guestfs-actions.pod:6379 ../src/guestfs-actions.pod:6392 -#: ../src/guestfs-actions.pod:6407 ../src/guestfs-actions.pod:6466 -#: ../src/guestfs-actions.pod:6483 ../src/guestfs-actions.pod:6499 -#: ../src/guestfs-actions.pod:6515 ../src/guestfs-actions.pod:6532 -#: ../src/guestfs-actions.pod:6545 ../src/guestfs-actions.pod:6565 -#: ../src/guestfs-actions.pod:6601 ../src/guestfs-actions.pod:6615 -#: ../src/guestfs-actions.pod:6656 ../src/guestfs-actions.pod:6669 -#: ../src/guestfs-actions.pod:6687 ../src/guestfs-actions.pod:6721 -#: ../src/guestfs-actions.pod:6757 ../src/guestfs-actions.pod:6876 -#: ../src/guestfs-actions.pod:6894 ../src/guestfs-actions.pod:6908 -#: ../src/guestfs-actions.pod:6963 ../src/guestfs-actions.pod:6976 -#: ../src/guestfs-actions.pod:7021 ../src/guestfs-actions.pod:7054 -#: ../src/guestfs-actions.pod:7108 ../src/guestfs-actions.pod:7134 -#: ../src/guestfs-actions.pod:7200 ../src/guestfs-actions.pod:7219 -#: ../src/guestfs-actions.pod:7248 +#: ../src/guestfs-actions.pod:2501 ../src/guestfs-actions.pod:3371 +#: ../src/guestfs-actions.pod:3386 ../src/guestfs-actions.pod:3406 +#: ../src/guestfs-actions.pod:3561 ../src/guestfs-actions.pod:3575 +#: ../src/guestfs-actions.pod:3588 ../src/guestfs-actions.pod:3602 +#: ../src/guestfs-actions.pod:3617 ../src/guestfs-actions.pod:3653 +#: ../src/guestfs-actions.pod:3725 ../src/guestfs-actions.pod:3745 +#: ../src/guestfs-actions.pod:3762 ../src/guestfs-actions.pod:3785 +#: ../src/guestfs-actions.pod:3808 ../src/guestfs-actions.pod:3840 +#: ../src/guestfs-actions.pod:3859 ../src/guestfs-actions.pod:3878 +#: ../src/guestfs-actions.pod:3913 ../src/guestfs-actions.pod:3925 +#: ../src/guestfs-actions.pod:3961 ../src/guestfs-actions.pod:3977 +#: ../src/guestfs-actions.pod:3990 ../src/guestfs-actions.pod:4005 +#: ../src/guestfs-actions.pod:4022 ../src/guestfs-actions.pod:4115 +#: ../src/guestfs-actions.pod:4135 ../src/guestfs-actions.pod:4148 +#: ../src/guestfs-actions.pod:4199 ../src/guestfs-actions.pod:4217 +#: ../src/guestfs-actions.pod:4235 ../src/guestfs-actions.pod:4251 +#: ../src/guestfs-actions.pod:4265 ../src/guestfs-actions.pod:4279 +#: ../src/guestfs-actions.pod:4296 ../src/guestfs-actions.pod:4311 +#: ../src/guestfs-actions.pod:4331 ../src/guestfs-actions.pod:4389 +#: ../src/guestfs-actions.pod:4462 ../src/guestfs-actions.pod:4493 +#: ../src/guestfs-actions.pod:4512 ../src/guestfs-actions.pod:4531 +#: ../src/guestfs-actions.pod:4543 ../src/guestfs-actions.pod:4560 +#: ../src/guestfs-actions.pod:4573 ../src/guestfs-actions.pod:4588 +#: ../src/guestfs-actions.pod:4603 ../src/guestfs-actions.pod:4638 +#: ../src/guestfs-actions.pod:4653 ../src/guestfs-actions.pod:4673 +#: ../src/guestfs-actions.pod:4687 ../src/guestfs-actions.pod:4704 +#: ../src/guestfs-actions.pod:4753 ../src/guestfs-actions.pod:4790 +#: ../src/guestfs-actions.pod:4804 ../src/guestfs-actions.pod:4832 +#: ../src/guestfs-actions.pod:4849 ../src/guestfs-actions.pod:4867 +#: ../src/guestfs-actions.pod:5001 ../src/guestfs-actions.pod:5058 +#: ../src/guestfs-actions.pod:5080 ../src/guestfs-actions.pod:5098 +#: ../src/guestfs-actions.pod:5130 ../src/guestfs-actions.pod:5196 +#: ../src/guestfs-actions.pod:5213 ../src/guestfs-actions.pod:5226 +#: ../src/guestfs-actions.pod:5240 ../src/guestfs-actions.pod:5529 +#: ../src/guestfs-actions.pod:5548 ../src/guestfs-actions.pod:5567 +#: ../src/guestfs-actions.pod:5579 ../src/guestfs-actions.pod:5591 +#: ../src/guestfs-actions.pod:5605 ../src/guestfs-actions.pod:5617 +#: ../src/guestfs-actions.pod:5631 ../src/guestfs-actions.pod:5647 +#: ../src/guestfs-actions.pod:5668 ../src/guestfs-actions.pod:5687 +#: ../src/guestfs-actions.pod:5706 ../src/guestfs-actions.pod:5736 +#: ../src/guestfs-actions.pod:5752 ../src/guestfs-actions.pod:5775 +#: ../src/guestfs-actions.pod:5793 ../src/guestfs-actions.pod:5812 +#: ../src/guestfs-actions.pod:5833 ../src/guestfs-actions.pod:5852 +#: ../src/guestfs-actions.pod:5869 ../src/guestfs-actions.pod:5897 +#: ../src/guestfs-actions.pod:5921 ../src/guestfs-actions.pod:5940 +#: ../src/guestfs-actions.pod:5964 ../src/guestfs-actions.pod:5983 +#: ../src/guestfs-actions.pod:5998 ../src/guestfs-actions.pod:6017 +#: ../src/guestfs-actions.pod:6054 ../src/guestfs-actions.pod:6077 +#: ../src/guestfs-actions.pod:6103 ../src/guestfs-actions.pod:6211 +#: ../src/guestfs-actions.pod:6332 ../src/guestfs-actions.pod:6344 +#: ../src/guestfs-actions.pod:6357 ../src/guestfs-actions.pod:6370 +#: ../src/guestfs-actions.pod:6392 ../src/guestfs-actions.pod:6405 +#: ../src/guestfs-actions.pod:6418 ../src/guestfs-actions.pod:6431 +#: ../src/guestfs-actions.pod:6446 ../src/guestfs-actions.pod:6505 +#: ../src/guestfs-actions.pod:6522 ../src/guestfs-actions.pod:6538 +#: ../src/guestfs-actions.pod:6554 ../src/guestfs-actions.pod:6571 +#: ../src/guestfs-actions.pod:6584 ../src/guestfs-actions.pod:6604 +#: ../src/guestfs-actions.pod:6640 ../src/guestfs-actions.pod:6654 +#: ../src/guestfs-actions.pod:6695 ../src/guestfs-actions.pod:6708 +#: ../src/guestfs-actions.pod:6726 ../src/guestfs-actions.pod:6760 +#: ../src/guestfs-actions.pod:6796 ../src/guestfs-actions.pod:6915 +#: ../src/guestfs-actions.pod:6933 ../src/guestfs-actions.pod:6947 +#: ../src/guestfs-actions.pod:7002 ../src/guestfs-actions.pod:7015 +#: ../src/guestfs-actions.pod:7060 ../src/guestfs-actions.pod:7093 +#: ../src/guestfs-actions.pod:7147 ../src/guestfs-actions.pod:7173 +#: ../src/guestfs-actions.pod:7239 ../src/guestfs-actions.pod:7258 +#: ../src/guestfs-actions.pod:7287 msgid "This function returns 0 on success or -1 on error." msgstr "" @@ -5917,12 +6300,12 @@ msgstr "" #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1443 #: ../src/guestfs-actions.pod:1939 ../src/guestfs-actions.pod:1960 -#: ../src/guestfs-actions.pod:4301 ../src/guestfs-actions.pod:7142 -#: ../src/guestfs-actions.pod:7311 ../fish/guestfish-actions.pod:31 +#: ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:7181 +#: ../src/guestfs-actions.pod:7350 ../fish/guestfish-actions.pod:31 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1319 -#: ../fish/guestfish-actions.pod:1333 ../fish/guestfish-actions.pod:2908 -#: ../fish/guestfish-actions.pod:4762 ../fish/guestfish-actions.pod:4859 +#: ../fish/guestfish-actions.pod:1333 ../fish/guestfish-actions.pod:2938 +#: ../fish/guestfish-actions.pod:4796 ../fish/guestfish-actions.pod:4893 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 " @@ -5934,11 +6317,11 @@ msgstr "" #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1911 #: ../src/guestfs-actions.pod:2009 ../src/guestfs-actions.pod:2112 -#: ../src/guestfs-actions.pod:3338 ../src/guestfs-actions.pod:3353 -#: ../src/guestfs-actions.pod:4605 ../src/guestfs-actions.pod:5719 -#: ../src/guestfs-actions.pod:5836 ../src/guestfs-actions.pod:5946 -#: ../src/guestfs-actions.pod:6409 ../src/guestfs-actions.pod:6534 -#: ../src/guestfs-actions.pod:7056 +#: ../src/guestfs-actions.pod:3373 ../src/guestfs-actions.pod:3388 +#: ../src/guestfs-actions.pod:4640 ../src/guestfs-actions.pod:5754 +#: ../src/guestfs-actions.pod:5871 ../src/guestfs-actions.pod:5985 +#: ../src/guestfs-actions.pod:6448 ../src/guestfs-actions.pod:6573 +#: ../src/guestfs-actions.pod:7095 msgid "(Added in 0.3)" msgstr "" @@ -5963,7 +6346,7 @@ msgstr "" # type: textblock #. type: textblock #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145 -#: ../src/guestfs-actions.pod:4315 +#: ../src/guestfs-actions.pod:4350 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 " @@ -6054,11 +6437,11 @@ msgstr "" #: ../src/guestfs-actions.pod:1981 ../src/guestfs-actions.pod:2021 #: ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:2099 #: ../src/guestfs-actions.pod:2392 ../src/guestfs-actions.pod:2719 -#: ../src/guestfs-actions.pod:2740 ../src/guestfs-actions.pod:4741 -#: ../src/guestfs-actions.pod:4869 ../src/guestfs-actions.pod:5275 -#: ../src/guestfs-actions.pod:5301 ../src/guestfs-actions.pod:6642 -#: ../src/guestfs-actions.pod:7067 ../src/guestfs-actions.pod:7080 -#: ../src/guestfs-actions.pod:7093 +#: ../src/guestfs-actions.pod:2740 ../src/guestfs-actions.pod:4776 +#: ../src/guestfs-actions.pod:4904 ../src/guestfs-actions.pod:5310 +#: ../src/guestfs-actions.pod:5336 ../src/guestfs-actions.pod:6681 +#: ../src/guestfs-actions.pod:7106 ../src/guestfs-actions.pod:7119 +#: ../src/guestfs-actions.pod:7132 msgid "On error this function returns -1." msgstr "" @@ -6096,7 +6479,7 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219 -#: ../src/guestfs-actions.pod:4368 ../src/guestfs-actions.pod:4380 +#: ../src/guestfs-actions.pod:4403 ../src/guestfs-actions.pod:4415 msgid "See L." msgstr "" @@ -6217,8 +6600,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4326 -#: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:2919 +#: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4361 +#: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:2949 msgid "The optional arguments are:" msgstr "" @@ -6484,7 +6867,7 @@ msgstr "" #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543 -#: ../src/guestfs-actions.pod:5352 +#: ../src/guestfs-actions.pod:5387 msgid "(Added in 0.7)" msgstr "" @@ -6613,16 +6996,17 @@ msgstr "" #: ../src/guestfs-actions.pod:2604 ../src/guestfs-actions.pod:2671 #: ../src/guestfs-actions.pod:2691 ../src/guestfs-actions.pod:2805 #: ../src/guestfs-actions.pod:2836 ../src/guestfs-actions.pod:2860 -#: ../src/guestfs-actions.pod:2922 ../src/guestfs-actions.pod:2945 -#: ../src/guestfs-actions.pod:3512 ../src/guestfs-actions.pod:3862 -#: ../src/guestfs-actions.pod:4032 ../src/guestfs-actions.pod:4142 -#: ../src/guestfs-actions.pod:4887 ../src/guestfs-actions.pod:5080 -#: ../src/guestfs-actions.pod:5250 ../src/guestfs-actions.pod:5428 -#: ../src/guestfs-actions.pod:5477 ../src/guestfs-actions.pod:6085 -#: ../src/guestfs-actions.pod:6101 ../src/guestfs-actions.pod:6118 -#: ../src/guestfs-actions.pod:6142 ../src/guestfs-actions.pod:6816 -#: ../src/guestfs-actions.pod:6835 ../src/guestfs-actions.pod:6853 -#: ../src/guestfs-actions.pod:7033 ../src/guestfs-actions.pod:7305 +#: ../src/guestfs-actions.pod:2897 ../src/guestfs-actions.pod:2957 +#: ../src/guestfs-actions.pod:2980 ../src/guestfs-actions.pod:3547 +#: ../src/guestfs-actions.pod:3897 ../src/guestfs-actions.pod:4067 +#: ../src/guestfs-actions.pod:4177 ../src/guestfs-actions.pod:4922 +#: ../src/guestfs-actions.pod:5115 ../src/guestfs-actions.pod:5285 +#: ../src/guestfs-actions.pod:5463 ../src/guestfs-actions.pod:5512 +#: ../src/guestfs-actions.pod:6124 ../src/guestfs-actions.pod:6140 +#: ../src/guestfs-actions.pod:6157 ../src/guestfs-actions.pod:6181 +#: ../src/guestfs-actions.pod:6855 ../src/guestfs-actions.pod:6874 +#: ../src/guestfs-actions.pod:6892 ../src/guestfs-actions.pod:7072 +#: ../src/guestfs-actions.pod:7344 msgid "" "This function returns a string, or NULL on error. I." @@ -6860,19 +7244,19 @@ msgstr "" #: ../src/guestfs-actions.pod:2212 ../src/guestfs-actions.pod:2231 #: ../src/guestfs-actions.pod:2274 ../src/guestfs-actions.pod:2298 #: ../src/guestfs-actions.pod:2369 ../src/guestfs-actions.pod:2418 -#: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2879 -#: ../src/guestfs-actions.pod:3147 ../src/guestfs-actions.pod:3432 -#: ../src/guestfs-actions.pod:3494 ../src/guestfs-actions.pod:3599 -#: ../src/guestfs-actions.pod:4004 ../src/guestfs-actions.pod:4702 -#: ../src/guestfs-actions.pod:5222 ../src/guestfs-actions.pod:5348 -#: ../src/guestfs-actions.pod:5462 ../src/guestfs-actions.pod:6158 -#: ../src/guestfs-actions.pod:6219 ../src/guestfs-actions.pod:6274 -#: ../src/guestfs-actions.pod:6420 ../src/guestfs-actions.pod:6444 -#: ../src/guestfs-actions.pod:6926 ../src/guestfs-actions.pod:6946 -#: ../src/guestfs-actions.pod:6993 ../src/guestfs-actions.pod:7158 -#: ../src/guestfs-actions.pod:7177 ../src/guestfs-actions.pod:7262 -#: ../src/guestfs-actions.pod:7281 ../src/guestfs-actions.pod:7327 -#: ../src/guestfs-actions.pod:7346 +#: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2914 +#: ../src/guestfs-actions.pod:3182 ../src/guestfs-actions.pod:3467 +#: ../src/guestfs-actions.pod:3529 ../src/guestfs-actions.pod:3634 +#: ../src/guestfs-actions.pod:4039 ../src/guestfs-actions.pod:4737 +#: ../src/guestfs-actions.pod:5257 ../src/guestfs-actions.pod:5383 +#: ../src/guestfs-actions.pod:5497 ../src/guestfs-actions.pod:6197 +#: ../src/guestfs-actions.pod:6258 ../src/guestfs-actions.pod:6313 +#: ../src/guestfs-actions.pod:6459 ../src/guestfs-actions.pod:6483 +#: ../src/guestfs-actions.pod:6965 ../src/guestfs-actions.pod:6985 +#: ../src/guestfs-actions.pod:7032 ../src/guestfs-actions.pod:7197 +#: ../src/guestfs-actions.pod:7216 ../src/guestfs-actions.pod:7301 +#: ../src/guestfs-actions.pod:7320 ../src/guestfs-actions.pod:7366 +#: ../src/guestfs-actions.pod:7385 msgid "" "This function returns a NULL-terminated array of strings (like L), or NULL if there was an error. I." msgstr "" @@ -7697,30 +8081,30 @@ msgstr "" #: ../src/guestfs-actions.pod:2216 ../src/guestfs-actions.pod:2235 #: ../src/guestfs-actions.pod:2278 ../src/guestfs-actions.pod:2302 #: ../src/guestfs-actions.pod:2319 ../src/guestfs-actions.pod:2348 -#: ../src/guestfs-actions.pod:5120 ../src/guestfs-actions.pod:5146 -#: ../src/guestfs-actions.pod:5277 ../src/guestfs-actions.pod:5303 -#: ../src/guestfs-actions.pod:5327 ../src/guestfs-actions.pod:6223 -#: ../src/guestfs-actions.pod:6278 ../src/guestfs-actions.pod:6424 -#: ../src/guestfs-actions.pod:6448 ../src/guestfs-actions.pod:7110 -#: ../src/guestfs-actions.pod:7136 ../src/guestfs-actions.pod:7162 -#: ../src/guestfs-actions.pod:7181 ../src/guestfs-actions.pod:7266 -#: ../src/guestfs-actions.pod:7285 ../src/guestfs-actions.pod:7331 -#: ../src/guestfs-actions.pod:7350 ../fish/guestfish-actions.pod:587 +#: ../src/guestfs-actions.pod:5155 ../src/guestfs-actions.pod:5181 +#: ../src/guestfs-actions.pod:5312 ../src/guestfs-actions.pod:5338 +#: ../src/guestfs-actions.pod:5362 ../src/guestfs-actions.pod:6262 +#: ../src/guestfs-actions.pod:6317 ../src/guestfs-actions.pod:6463 +#: ../src/guestfs-actions.pod:6487 ../src/guestfs-actions.pod:7149 +#: ../src/guestfs-actions.pod:7175 ../src/guestfs-actions.pod:7201 +#: ../src/guestfs-actions.pod:7220 ../src/guestfs-actions.pod:7305 +#: ../src/guestfs-actions.pod:7324 ../src/guestfs-actions.pod:7370 +#: ../src/guestfs-actions.pod:7389 ../fish/guestfish-actions.pod:587 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997 #: ../fish/guestfish-actions.pod:1192 ../fish/guestfish-actions.pod:1493 #: ../fish/guestfish-actions.pod:1503 ../fish/guestfish-actions.pod:1531 #: ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:1556 -#: ../fish/guestfish-actions.pod:1575 ../fish/guestfish-actions.pod:3437 -#: ../fish/guestfish-actions.pod:3452 ../fish/guestfish-actions.pod:3528 -#: ../fish/guestfish-actions.pod:3545 ../fish/guestfish-actions.pod:3560 -#: ../fish/guestfish-actions.pod:4182 ../fish/guestfish-actions.pod:4228 -#: ../fish/guestfish-actions.pod:4313 ../fish/guestfish-actions.pod:4328 -#: ../fish/guestfish-actions.pod:4738 ../fish/guestfish-actions.pod:4756 -#: ../fish/guestfish-actions.pod:4773 ../fish/guestfish-actions.pod:4783 -#: ../fish/guestfish-actions.pod:4831 ../fish/guestfish-actions.pod:4841 -#: ../fish/guestfish-actions.pod:4870 ../fish/guestfish-actions.pod:4880 +#: ../fish/guestfish-actions.pod:1575 ../fish/guestfish-actions.pod:3467 +#: ../fish/guestfish-actions.pod:3482 ../fish/guestfish-actions.pod:3558 +#: ../fish/guestfish-actions.pod:3575 ../fish/guestfish-actions.pod:3590 +#: ../fish/guestfish-actions.pod:4216 ../fish/guestfish-actions.pod:4262 +#: ../fish/guestfish-actions.pod:4347 ../fish/guestfish-actions.pod:4362 +#: ../fish/guestfish-actions.pod:4772 ../fish/guestfish-actions.pod:4790 +#: ../fish/guestfish-actions.pod:4807 ../fish/guestfish-actions.pod:4817 +#: ../fish/guestfish-actions.pod:4865 ../fish/guestfish-actions.pod:4875 +#: ../fish/guestfish-actions.pod:4904 ../fish/guestfish-actions.pod:4914 msgid "" "Because of the message protocol, there is a transfer limit of somewhere " "between 2MB and 4MB. See L." @@ -7728,12 +8112,12 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3436 -#: ../src/guestfs-actions.pod:3498 ../src/guestfs-actions.pod:3515 -#: ../src/guestfs-actions.pod:3603 ../src/guestfs-actions.pod:4008 -#: ../src/guestfs-actions.pod:4022 ../src/guestfs-actions.pod:5226 -#: ../src/guestfs-actions.pod:5240 ../src/guestfs-actions.pod:6997 -#: ../src/guestfs-actions.pod:7011 +#: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3471 +#: ../src/guestfs-actions.pod:3533 ../src/guestfs-actions.pod:3550 +#: ../src/guestfs-actions.pod:3638 ../src/guestfs-actions.pod:4043 +#: ../src/guestfs-actions.pod:4057 ../src/guestfs-actions.pod:5261 +#: ../src/guestfs-actions.pod:5275 ../src/guestfs-actions.pod:7036 +#: ../src/guestfs-actions.pod:7050 msgid "(Added in 0.4)" msgstr "" @@ -7877,9 +8261,9 @@ msgstr "" # type: textblock #. type: textblock #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246 -#: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:3180 -#: ../src/guestfs-actions.pod:3209 ../src/guestfs-actions.pod:3270 -#: ../src/guestfs-actions.pod:3297 ../src/guestfs-actions.pod:6694 +#: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:3215 +#: ../src/guestfs-actions.pod:3244 ../src/guestfs-actions.pod:3305 +#: ../src/guestfs-actions.pod:3332 ../src/guestfs-actions.pod:6733 msgid "(Added in 1.0.2)" msgstr "" @@ -7912,11 +8296,11 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4757 -#: ../src/guestfs-actions.pod:4816 ../src/guestfs-actions.pod:4853 -#: ../src/guestfs-actions.pod:4871 ../src/guestfs-actions.pod:5047 -#: ../src/guestfs-actions.pod:6603 ../src/guestfs-actions.pod:6617 -#: ../src/guestfs-actions.pod:7023 +#: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4792 +#: ../src/guestfs-actions.pod:4851 ../src/guestfs-actions.pod:4888 +#: ../src/guestfs-actions.pod:4906 ../src/guestfs-actions.pod:5082 +#: ../src/guestfs-actions.pod:6642 ../src/guestfs-actions.pod:6656 +#: ../src/guestfs-actions.pod:7062 msgid "(Added in 1.3.2)" msgstr "" @@ -8001,11 +8385,11 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4259 -#: ../src/guestfs-actions.pod:4456 ../src/guestfs-actions.pod:4475 -#: ../src/guestfs-actions.pod:4494 ../fish/guestfish-actions.pod:676 -#: ../fish/guestfish-actions.pod:2883 ../fish/guestfish-actions.pod:3012 -#: ../fish/guestfish-actions.pod:3022 ../fish/guestfish-actions.pod:3032 +#: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4294 +#: ../src/guestfs-actions.pod:4491 ../src/guestfs-actions.pod:4510 +#: ../src/guestfs-actions.pod:4529 ../fish/guestfish-actions.pod:676 +#: ../fish/guestfish-actions.pod:2913 ../fish/guestfish-actions.pod:3042 +#: ../fish/guestfish-actions.pod:3052 ../fish/guestfish-actions.pod:3062 msgid "The mode actually set is affected by the umask." msgstr "" @@ -8036,8 +8420,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3367 -#: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2341 +#: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3402 +#: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2371 msgid "" "Only numeric uid and gid are supported. If you want to use names, you will " "need to locate and parse the password file yourself (Augeas support makes " @@ -8231,9 +8615,9 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1692 -#: ../src/guestfs-actions.pod:1714 ../src/guestfs-actions.pod:6689 -#: ../src/guestfs-actions.pod:6723 ../src/guestfs-actions.pod:7202 -#: ../src/guestfs-actions.pod:7221 +#: ../src/guestfs-actions.pod:1714 ../src/guestfs-actions.pod:6728 +#: ../src/guestfs-actions.pod:6762 ../src/guestfs-actions.pod:7241 +#: ../src/guestfs-actions.pod:7260 msgid "" "This long-running command can generate progress notification messages so " "that the caller can display a progress bar or indicator. To receive these " @@ -8243,9 +8627,9 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4035 -#: ../src/guestfs-actions.pod:5253 ../src/guestfs-actions.pod:6930 -#: ../src/guestfs-actions.pod:6950 ../src/guestfs-actions.pod:7036 +#: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4070 +#: ../src/guestfs-actions.pod:5288 ../src/guestfs-actions.pod:6969 +#: ../src/guestfs-actions.pod:6989 ../src/guestfs-actions.pod:7075 msgid "(Added in 1.0.87)" msgstr "" @@ -8279,8 +8663,8 @@ msgstr "" #. type: textblock #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297 -#: ../src/guestfs-actions.pod:1406 ../src/guestfs-actions.pod:4720 -#: ../src/guestfs-actions.pod:5097 +#: ../src/guestfs-actions.pod:1406 ../src/guestfs-actions.pod:4755 +#: ../src/guestfs-actions.pod:5132 msgid "(Added in 1.0.18)" msgstr "" @@ -8382,10 +8766,10 @@ msgstr "" #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204 #: ../src/guestfs-actions.pod:1317 ../src/guestfs-actions.pod:2281 #: ../src/guestfs-actions.pod:2305 ../src/guestfs-actions.pod:2373 -#: ../src/guestfs-actions.pod:4145 ../src/guestfs-actions.pod:4620 -#: ../src/guestfs-actions.pod:6427 ../src/guestfs-actions.pod:6451 -#: ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7082 -#: ../src/guestfs-actions.pod:7095 +#: ../src/guestfs-actions.pod:4180 ../src/guestfs-actions.pod:4655 +#: ../src/guestfs-actions.pod:6466 ../src/guestfs-actions.pod:6490 +#: ../src/guestfs-actions.pod:7108 ../src/guestfs-actions.pod:7121 +#: ../src/guestfs-actions.pod:7134 msgid "(Added in 1.0.54)" msgstr "" @@ -8475,8 +8859,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6683 -#: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4486 +#: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6722 +#: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4520 msgid "C can also be a named pipe." msgstr "" @@ -8531,7 +8915,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6728 +#: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6767 msgid "(Added in 1.5.17)" msgstr "" @@ -8696,7 +9080,7 @@ msgstr "" # type: textblock #. type: textblock #: ../src/guestfs-actions.pod:1352 ../src/guestfs-actions.pod:2089 -#: ../src/guestfs-actions.pod:5931 +#: ../src/guestfs-actions.pod:5966 msgid "(Added in 1.0.69)" msgstr "" @@ -8733,17 +9117,17 @@ msgstr "" #: ../src/guestfs-actions.pod:2238 ../src/guestfs-actions.pod:2394 #: ../src/guestfs-actions.pod:2407 ../src/guestfs-actions.pod:2422 #: ../src/guestfs-actions.pod:2468 ../src/guestfs-actions.pod:2490 -#: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:3528 -#: ../src/guestfs-actions.pod:3542 ../src/guestfs-actions.pod:3555 -#: ../src/guestfs-actions.pod:3569 ../src/guestfs-actions.pod:4555 -#: ../src/guestfs-actions.pod:5431 ../src/guestfs-actions.pod:5480 -#: ../src/guestfs-actions.pod:6295 ../src/guestfs-actions.pod:6307 -#: ../src/guestfs-actions.pod:6320 ../src/guestfs-actions.pod:6333 -#: ../src/guestfs-actions.pod:6355 ../src/guestfs-actions.pod:6368 -#: ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6394 -#: ../src/guestfs-actions.pod:7165 ../src/guestfs-actions.pod:7184 -#: ../src/guestfs-actions.pod:7269 ../src/guestfs-actions.pod:7288 -#: ../src/guestfs-actions.pod:7334 ../src/guestfs-actions.pod:7353 +#: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:3563 +#: ../src/guestfs-actions.pod:3577 ../src/guestfs-actions.pod:3590 +#: ../src/guestfs-actions.pod:3604 ../src/guestfs-actions.pod:4590 +#: ../src/guestfs-actions.pod:5466 ../src/guestfs-actions.pod:5515 +#: ../src/guestfs-actions.pod:6334 ../src/guestfs-actions.pod:6346 +#: ../src/guestfs-actions.pod:6359 ../src/guestfs-actions.pod:6372 +#: ../src/guestfs-actions.pod:6394 ../src/guestfs-actions.pod:6407 +#: ../src/guestfs-actions.pod:6420 ../src/guestfs-actions.pod:6433 +#: ../src/guestfs-actions.pod:7204 ../src/guestfs-actions.pod:7223 +#: ../src/guestfs-actions.pod:7308 ../src/guestfs-actions.pod:7327 +#: ../src/guestfs-actions.pod:7373 ../src/guestfs-actions.pod:7392 msgid "(Added in 1.0.66)" msgstr "" @@ -9260,8 +9644,8 @@ msgstr "" #: ../src/guestfs-actions.pod:2607 ../src/guestfs-actions.pod:2633 #: ../src/guestfs-actions.pod:2721 ../src/guestfs-actions.pod:2742 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2863 -#: ../src/guestfs-actions.pod:2925 ../src/guestfs-actions.pod:3151 -#: ../src/guestfs-actions.pod:3283 +#: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:3186 +#: ../src/guestfs-actions.pod:3318 msgid "(Added in 1.5.3)" msgstr "" @@ -9466,8 +9850,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1761 ../src/guestfs-actions.pod:3972 -#: ../src/guestfs-actions.pod:5515 +#: ../src/guestfs-actions.pod:1761 ../src/guestfs-actions.pod:4007 +#: ../src/guestfs-actions.pod:5550 msgid "(Added in 1.0.27)" msgstr "" @@ -9663,7 +10047,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1874 ../src/guestfs-actions.pod:7207 +#: ../src/guestfs-actions.pod:1874 ../src/guestfs-actions.pod:7246 msgid "(Added in 1.0.16)" msgstr "" @@ -9708,11 +10092,11 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1890 ../src/guestfs-actions.pod:5193 -#: ../src/guestfs-actions.pod:5673 ../src/guestfs-actions.pod:6069 -#: ../src/guestfs-actions.pod:6088 ../src/guestfs-actions.pod:6104 -#: ../src/guestfs-actions.pod:6121 ../src/guestfs-actions.pod:6878 -#: ../src/guestfs-actions.pod:6896 ../src/guestfs-actions.pod:7250 +#: ../src/guestfs-actions.pod:1890 ../src/guestfs-actions.pod:5228 +#: ../src/guestfs-actions.pod:5708 ../src/guestfs-actions.pod:6108 +#: ../src/guestfs-actions.pod:6127 ../src/guestfs-actions.pod:6143 +#: ../src/guestfs-actions.pod:6160 ../src/guestfs-actions.pod:6917 +#: ../src/guestfs-actions.pod:6935 ../src/guestfs-actions.pod:7289 msgid "(Added in 1.0.26)" msgstr "" @@ -9781,7 +10165,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:5742 +#: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:5777 msgid "(Added in 1.0.72)" msgstr "" @@ -9819,7 +10203,7 @@ msgstr "" # type: textblock #. type: textblock #: ../src/guestfs-actions.pod:1943 ../src/guestfs-actions.pod:1964 -#: ../src/guestfs-actions.pod:5760 ../src/guestfs-actions.pod:5779 +#: ../src/guestfs-actions.pod:5795 ../src/guestfs-actions.pod:5814 msgid "(Added in 1.0.15)" msgstr "" @@ -9889,21 +10273,21 @@ msgstr "" # type: textblock #. type: textblock #: ../src/guestfs-actions.pod:1978 ../src/guestfs-actions.pod:2059 -#: ../src/guestfs-actions.pod:5795 ../src/guestfs-actions.pod:5902 +#: ../src/guestfs-actions.pod:5830 ../src/guestfs-actions.pod:5937 #: ../fish/guestfish-actions.pod:1348 ../fish/guestfish-actions.pod:1399 -#: ../fish/guestfish-actions.pod:3893 ../fish/guestfish-actions.pod:3980 +#: ../fish/guestfish-actions.pod:3923 ../fish/guestfish-actions.pod:4010 msgid "" "For more information on the architecture of libguestfs, see L." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:4263 -#: ../src/guestfs-actions.pod:4460 ../src/guestfs-actions.pod:4479 -#: ../src/guestfs-actions.pod:4498 ../src/guestfs-actions.pod:4510 -#: ../src/guestfs-actions.pod:4527 ../src/guestfs-actions.pod:4540 -#: ../src/guestfs-actions.pod:5418 ../src/guestfs-actions.pod:5800 -#: ../src/guestfs-actions.pod:6043 ../src/guestfs-actions.pod:6644 +#: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:4298 +#: ../src/guestfs-actions.pod:4495 ../src/guestfs-actions.pod:4514 +#: ../src/guestfs-actions.pod:4533 ../src/guestfs-actions.pod:4545 +#: ../src/guestfs-actions.pod:4562 ../src/guestfs-actions.pod:4575 +#: ../src/guestfs-actions.pod:5453 ../src/guestfs-actions.pod:5835 +#: ../src/guestfs-actions.pod:6082 ../src/guestfs-actions.pod:6683 msgid "(Added in 1.0.55)" msgstr "" @@ -9931,7 +10315,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:1994 ../src/guestfs-actions.pod:5819 +#: ../src/guestfs-actions.pod:1994 ../src/guestfs-actions.pod:5854 msgid "(Added in 1.5.4)" msgstr "" @@ -10041,7 +10425,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2038 ../src/guestfs-actions.pod:5864 +#: ../src/guestfs-actions.pod:2038 ../src/guestfs-actions.pod:5899 msgid "(Added in 1.0.6)" msgstr "" @@ -10069,12 +10453,12 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:3373 -#: ../src/guestfs-actions.pod:3670 ../src/guestfs-actions.pod:4070 -#: ../src/guestfs-actions.pod:4102 ../src/guestfs-actions.pod:5123 -#: ../src/guestfs-actions.pod:5466 ../src/guestfs-actions.pod:5888 -#: ../src/guestfs-actions.pod:6547 ../src/guestfs-actions.pod:6567 -#: ../src/guestfs-actions.pod:6759 +#: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:3408 +#: ../src/guestfs-actions.pod:3705 ../src/guestfs-actions.pod:4105 +#: ../src/guestfs-actions.pod:4137 ../src/guestfs-actions.pod:5158 +#: ../src/guestfs-actions.pod:5501 ../src/guestfs-actions.pod:5923 +#: ../src/guestfs-actions.pod:6586 ../src/guestfs-actions.pod:6606 +#: ../src/guestfs-actions.pod:6798 msgid "(Added in 1.0.77)" msgstr "" @@ -10105,7 +10489,7 @@ msgstr "" # type: textblock #. type: textblock #: ../src/guestfs-actions.pod:2064 ../src/guestfs-actions.pod:2127 -#: ../src/guestfs-actions.pod:5907 ../src/guestfs-actions.pod:5961 +#: ../src/guestfs-actions.pod:5942 ../src/guestfs-actions.pod:6000 msgid "(Added in 1.0.67)" msgstr "" @@ -10135,11 +10519,11 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2074 ../src/guestfs-actions.pod:3176 -#: ../src/guestfs-actions.pod:3205 ../src/guestfs-actions.pod:3266 -#: ../src/guestfs-actions.pod:3293 ../fish/guestfish-actions.pod:1409 -#: ../fish/guestfish-actions.pod:2223 ../fish/guestfish-actions.pod:2241 -#: ../fish/guestfish-actions.pod:2279 ../fish/guestfish-actions.pod:2295 +#: ../src/guestfs-actions.pod:2074 ../src/guestfs-actions.pod:3211 +#: ../src/guestfs-actions.pod:3240 ../src/guestfs-actions.pod:3301 +#: ../src/guestfs-actions.pod:3328 ../fish/guestfish-actions.pod:1409 +#: ../fish/guestfish-actions.pod:2253 ../fish/guestfish-actions.pod:2271 +#: ../fish/guestfish-actions.pod:2309 ../fish/guestfish-actions.pod:2325 msgid "For more information on states, see L." msgstr "" @@ -10270,7 +10654,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2141 ../src/guestfs-actions.pod:3387 +#: ../src/guestfs-actions.pod:2141 ../src/guestfs-actions.pod:3422 msgid "" "Normally it is better to get all extended attributes from a file in one go " "by calling C. However some Linux filesystem " @@ -10281,8 +10665,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2148 ../src/guestfs-actions.pod:3394 -#: ../fish/guestfish-actions.pod:1454 ../fish/guestfish-actions.pod:2360 +#: ../src/guestfs-actions.pod:2148 ../src/guestfs-actions.pod:3429 +#: ../fish/guestfish-actions.pod:1454 ../fish/guestfish-actions.pod:2390 msgid "" "Extended attribute values are blobs of binary data. If there is no extended " "attribute named C, this returns an error." @@ -10297,8 +10681,8 @@ msgstr "" # type: textblock #. type: textblock #: ../src/guestfs-actions.pod:2153 ../src/guestfs-actions.pod:2344 -#: ../src/guestfs-actions.pod:3399 ../src/guestfs-actions.pod:5116 -#: ../src/guestfs-actions.pod:5142 ../src/guestfs-actions.pod:5323 +#: ../src/guestfs-actions.pod:3434 ../src/guestfs-actions.pod:5151 +#: ../src/guestfs-actions.pod:5177 ../src/guestfs-actions.pod:5358 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>." @@ -10359,10 +10743,10 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2177 ../src/guestfs-actions.pod:3419 -#: ../src/guestfs-actions.pod:3584 ../src/guestfs-actions.pod:3620 -#: ../src/guestfs-actions.pod:5496 ../src/guestfs-actions.pod:5980 -#: ../src/guestfs-actions.pod:7315 +#: ../src/guestfs-actions.pod:2177 ../src/guestfs-actions.pod:3454 +#: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3655 +#: ../src/guestfs-actions.pod:5531 ../src/guestfs-actions.pod:6019 +#: ../src/guestfs-actions.pod:7354 msgid "(Added in 1.0.59)" msgstr "" @@ -10408,8 +10792,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2200 ../src/guestfs-actions.pod:6145 -#: ../src/guestfs-actions.pod:6162 +#: ../src/guestfs-actions.pod:2200 ../src/guestfs-actions.pod:6184 +#: ../src/guestfs-actions.pod:6201 msgid "(Added in 1.0.50)" msgstr "" @@ -10580,8 +10964,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2296 ../src/guestfs-actions.pod:6442 -#: ../fish/guestfish-actions.pod:1544 ../fish/guestfish-actions.pod:4326 +#: ../src/guestfs-actions.pod:2296 ../src/guestfs-actions.pod:6481 +#: ../fish/guestfish-actions.pod:1544 ../fish/guestfish-actions.pod:4360 msgid "If the parameter C is zero, this returns an empty list." msgstr "" @@ -10612,8 +10996,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2322 ../src/guestfs-actions.pod:6226 -#: ../src/guestfs-actions.pod:6281 +#: ../src/guestfs-actions.pod:2322 ../src/guestfs-actions.pod:6265 +#: ../src/guestfs-actions.pod:6320 msgid "(Added in 1.0.22)" msgstr "" @@ -10971,10 +11355,10 @@ msgstr "" #: ../src/guestfs-actions.pod:2680 ../src/guestfs-actions.pod:2702 #: ../src/guestfs-actions.pod:2729 ../src/guestfs-actions.pod:2750 #: ../src/guestfs-actions.pod:2787 ../src/guestfs-actions.pod:2816 -#: ../src/guestfs-actions.pod:2847 ../src/guestfs-actions.pod:2891 -#: ../src/guestfs-actions.pod:2933 ../src/guestfs-actions.pod:2956 -#: ../src/guestfs-actions.pod:2973 ../src/guestfs-actions.pod:2990 -#: ../src/guestfs-actions.pod:3009 +#: ../src/guestfs-actions.pod:2847 ../src/guestfs-actions.pod:2871 +#: ../src/guestfs-actions.pod:2926 ../src/guestfs-actions.pod:2968 +#: ../src/guestfs-actions.pod:2991 ../src/guestfs-actions.pod:3008 +#: ../src/guestfs-actions.pod:3025 ../src/guestfs-actions.pod:3044 msgid "" "This function should only be called with a root device string as returned by " "C." @@ -11002,18 +11386,18 @@ msgstr "" #: ../src/guestfs-actions.pod:2669 ../src/guestfs-actions.pod:2689 #: ../src/guestfs-actions.pod:2717 ../src/guestfs-actions.pod:2803 #: ../src/guestfs-actions.pod:2834 ../src/guestfs-actions.pod:2858 -#: ../src/guestfs-actions.pod:2877 ../src/guestfs-actions.pod:2920 -#: ../src/guestfs-actions.pod:2943 ../src/guestfs-actions.pod:2963 -#: ../src/guestfs-actions.pod:2980 ../src/guestfs-actions.pod:2999 -#: ../src/guestfs-actions.pod:3102 ../src/guestfs-actions.pod:3143 +#: ../src/guestfs-actions.pod:2912 ../src/guestfs-actions.pod:2955 +#: ../src/guestfs-actions.pod:2978 ../src/guestfs-actions.pod:2998 +#: ../src/guestfs-actions.pod:3015 ../src/guestfs-actions.pod:3034 +#: ../src/guestfs-actions.pod:3137 ../src/guestfs-actions.pod:3178 #: ../fish/guestfish-actions.pod:1698 ../fish/guestfish-actions.pod:1772 #: ../fish/guestfish-actions.pod:1824 ../fish/guestfish-actions.pod:1839 #: ../fish/guestfish-actions.pod:1860 ../fish/guestfish-actions.pod:1924 #: ../fish/guestfish-actions.pod:1948 ../fish/guestfish-actions.pod:1965 -#: ../fish/guestfish-actions.pod:1978 ../fish/guestfish-actions.pod:2013 -#: ../fish/guestfish-actions.pod:2029 ../fish/guestfish-actions.pod:2042 -#: ../fish/guestfish-actions.pod:2055 ../fish/guestfish-actions.pod:2070 -#: ../fish/guestfish-actions.pod:2169 ../fish/guestfish-actions.pod:2203 +#: ../fish/guestfish-actions.pod:2008 ../fish/guestfish-actions.pod:2043 +#: ../fish/guestfish-actions.pod:2059 ../fish/guestfish-actions.pod:2072 +#: ../fish/guestfish-actions.pod:2085 ../fish/guestfish-actions.pod:2100 +#: ../fish/guestfish-actions.pod:2199 ../fish/guestfish-actions.pod:2233 msgid "Please read L for more details." msgstr "" @@ -11182,8 +11566,8 @@ msgstr "" # type: =item #. type: =item #: ../src/guestfs-actions.pod:2588 ../src/guestfs-actions.pod:2660 -#: ../src/guestfs-actions.pod:2911 ../fish/guestfish-actions.pod:1758 -#: ../fish/guestfish-actions.pod:1815 ../fish/guestfish-actions.pod:2004 +#: ../src/guestfs-actions.pod:2946 ../fish/guestfish-actions.pod:1758 +#: ../fish/guestfish-actions.pod:1815 ../fish/guestfish-actions.pod:2034 msgid "\"unknown\"" msgstr "" @@ -11195,8 +11579,8 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:2592 ../src/guestfs-actions.pod:2903 -#: ../fish/guestfish-actions.pod:1762 ../fish/guestfish-actions.pod:1996 +#: ../src/guestfs-actions.pod:2592 ../src/guestfs-actions.pod:2938 +#: ../fish/guestfish-actions.pod:1762 ../fish/guestfish-actions.pod:2026 msgid "\"windows\"" msgstr "" @@ -11211,8 +11595,8 @@ msgstr "" # type: textblock #. type: textblock #: ../src/guestfs-actions.pod:2599 ../src/guestfs-actions.pod:2666 -#: ../src/guestfs-actions.pod:2917 ../fish/guestfish-actions.pod:1769 -#: ../fish/guestfish-actions.pod:1821 ../fish/guestfish-actions.pod:2010 +#: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:1769 +#: ../fish/guestfish-actions.pod:1821 ../fish/guestfish-actions.pod:2040 msgid "" "Future versions of libguestfs may return other strings here. The caller " "should be prepared to handle any string." @@ -11481,8 +11865,8 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2773 ../src/guestfs-actions.pod:3472 -#: ../src/guestfs-actions.pod:4682 ../src/guestfs-actions.pod:6583 +#: ../src/guestfs-actions.pod:2773 ../src/guestfs-actions.pod:3507 +#: ../src/guestfs-actions.pod:4717 ../src/guestfs-actions.pod:6622 msgid "" "This function returns a NULL-terminated array of strings, or NULL if there " "was an error. The array of strings will always have length C<2n+1>, where " @@ -11596,38 +11980,92 @@ msgstr "" #: ../src/guestfs-actions.pod:2843 #, no-wrap msgid "" -" char *\n" -" guestfs_inspect_get_product_name (guestfs_h *g,\n" -" const char *root);\n" -"\n" +" char *\n" +" guestfs_inspect_get_product_name (guestfs_h *g,\n" +" const char *root);\n" +"\n" +msgstr "" + +# type: textblock +#. type: textblock +#: ../src/guestfs-actions.pod:2850 ../fish/guestfish-actions.pod:1957 +msgid "" +"This returns the product name of the inspected operating system. The " +"product name is generally some freeform string which can be displayed to the " +"user, but should not be parsed by programs." +msgstr "" + +# type: textblock +#. type: textblock +#: ../src/guestfs-actions.pod:2855 ../fish/guestfish-actions.pod:1962 +msgid "" +"If the product name could not be determined, then the string C is " +"returned." +msgstr "" + +#. type: =head2 +#: ../src/guestfs-actions.pod:2865 +msgid "guestfs_inspect_get_product_variant" +msgstr "" + +#. type: verbatim +#: ../src/guestfs-actions.pod:2867 +#, no-wrap +msgid "" +" char *\n" +" guestfs_inspect_get_product_variant (guestfs_h *g,\n" +" const char *root);\n" +"\n" +msgstr "" + +#. type: textblock +#: ../src/guestfs-actions.pod:2874 ../fish/guestfish-actions.pod:1974 +msgid "This returns the product variant of the inspected operating system." +msgstr "" + +#. type: textblock +#: ../src/guestfs-actions.pod:2877 ../fish/guestfish-actions.pod:1977 +msgid "" +"For Windows guests, this returns the contents of the Registry key C C which " +"is usually a string such as C or C (other values are " +"possible). This can be used to distinguish consumer and enterprise versions " +"of Windows that have the same version number (for example, Windows 7 and " +"Windows 2008 Server are both version 6.1, but the former is C and " +"the latter is C)." +msgstr "" + +#. type: textblock +#: ../src/guestfs-actions.pod:2886 ../fish/guestfish-actions.pod:1986 +msgid "" +"For enterprise Linux guests, in future we intend this to return the product " +"variant such as C, C and so on. But this is not " +"implemented at present." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2850 ../fish/guestfish-actions.pod:1957 +#: ../src/guestfs-actions.pod:2890 ../fish/guestfish-actions.pod:1990 msgid "" -"This returns the product name of the inspected operating system. The " -"product name is generally some freeform string which can be displayed to the " -"user, but should not be parsed by programs." +"If the product variant could not be determined, then the string C " +"is returned." msgstr "" -# type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2855 ../fish/guestfish-actions.pod:1962 +#: ../src/guestfs-actions.pod:2893 msgid "" -"If the product name could not be determined, then the string C is " -"returned." +"Please read L for more details. See also " +"C, C." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:2865 +#: ../src/guestfs-actions.pod:2900 msgid "guestfs_inspect_get_roots" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:2867 +#: ../src/guestfs-actions.pod:2902 #, no-wrap msgid "" " char **\n" @@ -11637,7 +12075,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2870 +#: ../src/guestfs-actions.pod:2905 msgid "" "This function is a convenient way to get the list of root devices, as " "returned from a previous call to C, but without redoing " @@ -11646,7 +12084,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2874 +#: ../src/guestfs-actions.pod:2909 msgid "" "This returns an empty list if either no root devices were found or the " "caller has not called C." @@ -11654,19 +12092,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2883 +#: ../src/guestfs-actions.pod:2918 msgid "(Added in 1.7.3)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:2885 +#: ../src/guestfs-actions.pod:2920 msgid "guestfs_inspect_get_type" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:2887 +#: ../src/guestfs-actions.pod:2922 #, no-wrap msgid "" " char *\n" @@ -11677,7 +12115,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2894 ../fish/guestfish-actions.pod:1987 +#: ../src/guestfs-actions.pod:2929 ../fish/guestfish-actions.pod:2017 msgid "" "This returns the type of the inspected operating system. Currently defined " "types are:" @@ -11685,49 +12123,49 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:2899 ../fish/guestfish-actions.pod:1992 +#: ../src/guestfs-actions.pod:2934 ../fish/guestfish-actions.pod:2022 msgid "\"linux\"" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2901 ../fish/guestfish-actions.pod:1994 +#: ../src/guestfs-actions.pod:2936 ../fish/guestfish-actions.pod:2024 msgid "Any Linux-based operating system." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2905 ../fish/guestfish-actions.pod:1998 +#: ../src/guestfs-actions.pod:2940 ../fish/guestfish-actions.pod:2028 msgid "Any Microsoft Windows operating system." msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:2907 ../fish/guestfish-actions.pod:2000 +#: ../src/guestfs-actions.pod:2942 ../fish/guestfish-actions.pod:2030 msgid "\"freebsd\"" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2909 ../fish/guestfish-actions.pod:2002 +#: ../src/guestfs-actions.pod:2944 ../fish/guestfish-actions.pod:2032 msgid "FreeBSD." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2913 ../fish/guestfish-actions.pod:2006 +#: ../src/guestfs-actions.pod:2948 ../fish/guestfish-actions.pod:2036 msgid "The operating system type could not be determined." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:2927 +#: ../src/guestfs-actions.pod:2962 msgid "guestfs_inspect_get_windows_systemroot" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:2929 +#: ../src/guestfs-actions.pod:2964 #, no-wrap msgid "" " char *\n" @@ -11738,7 +12176,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2936 ../fish/guestfish-actions.pod:2022 +#: ../src/guestfs-actions.pod:2971 ../fish/guestfish-actions.pod:2052 msgid "" "This returns the Windows systemroot of the inspected guest. The systemroot " "is a directory path such as C." @@ -11746,7 +12184,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2939 ../fish/guestfish-actions.pod:2025 +#: ../src/guestfs-actions.pod:2974 ../fish/guestfish-actions.pod:2055 msgid "" "This call assumes that the guest is Windows and that the systemroot could be " "determined by inspection. If this is not the case then an error is returned." @@ -11754,17 +12192,17 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:2948 +#: ../src/guestfs-actions.pod:2983 msgid "(Added in 1.5.25)" msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:2950 +#: ../src/guestfs-actions.pod:2985 msgid "guestfs_inspect_is_live" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:2952 +#: ../src/guestfs-actions.pod:2987 #, no-wrap msgid "" " int\n" @@ -11774,19 +12212,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2959 +#: ../src/guestfs-actions.pod:2994 msgid "" "If C returns C (this is an install " "disk), then this returns true if a live image was detected on the disk." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:2967 +#: ../src/guestfs-actions.pod:3002 msgid "guestfs_inspect_is_multipart" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:2969 +#: ../src/guestfs-actions.pod:3004 #, no-wrap msgid "" " int\n" @@ -11796,19 +12234,19 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2976 +#: ../src/guestfs-actions.pod:3011 msgid "" "If C returns C (this is an install " "disk), then this returns true if the disk is part of a set." msgstr "" #. type: =head2 -#: ../src/guestfs-actions.pod:2984 +#: ../src/guestfs-actions.pod:3019 msgid "guestfs_inspect_is_netinst" msgstr "" #. type: verbatim -#: ../src/guestfs-actions.pod:2986 +#: ../src/guestfs-actions.pod:3021 #, no-wrap msgid "" " int\n" @@ -11818,7 +12256,7 @@ msgid "" msgstr "" #. type: textblock -#: ../src/guestfs-actions.pod:2993 +#: ../src/guestfs-actions.pod:3028 msgid "" "If C returns C (this is an install " "disk), then this returns true if the disk is a network installer, ie. not a " @@ -11828,13 +12266,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3003 +#: ../src/guestfs-actions.pod:3038 msgid "guestfs_inspect_list_applications" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3005 +#: ../src/guestfs-actions.pod:3040 #, no-wrap msgid "" " struct guestfs_application_list *\n" @@ -11845,13 +12283,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2079 +#: ../src/guestfs-actions.pod:3047 ../fish/guestfish-actions.pod:2109 msgid "Return the list of applications installed in the operating system." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3014 +#: ../src/guestfs-actions.pod:3049 msgid "" "I This call works differently from other parts of the inspection " "API. You have to call C, then " @@ -11865,7 +12303,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3024 ../fish/guestfish-actions.pod:2091 +#: ../src/guestfs-actions.pod:3059 ../fish/guestfish-actions.pod:2121 msgid "" "This returns an empty list if the inspection code was not able to determine " "the list of applications." @@ -11873,19 +12311,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3027 ../fish/guestfish-actions.pod:2094 +#: ../src/guestfs-actions.pod:3062 ../fish/guestfish-actions.pod:2124 msgid "The application structure contains the following fields:" msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3031 ../fish/guestfish-actions.pod:2098 +#: ../src/guestfs-actions.pod:3066 ../fish/guestfish-actions.pod:2128 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2100 +#: ../src/guestfs-actions.pod:3068 ../fish/guestfish-actions.pod:2130 msgid "" "The name of the application. For Red Hat-derived and Debian-derived Linux " "guests, this is the package name." @@ -11893,13 +12331,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3036 ../fish/guestfish-actions.pod:2103 +#: ../src/guestfs-actions.pod:3071 ../fish/guestfish-actions.pod:2133 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2105 +#: ../src/guestfs-actions.pod:3073 ../fish/guestfish-actions.pod:2135 msgid "" "The display name of the application, sometimes localized to the install " "language of the guest operating system." @@ -11907,7 +12345,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3041 ../fish/guestfish-actions.pod:2108 +#: ../src/guestfs-actions.pod:3076 ../fish/guestfish-actions.pod:2138 msgid "" "If unavailable this is returned as an empty string C<\"\">. Callers needing " "to display something can use C instead." @@ -11915,13 +12353,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3044 ../fish/guestfish-actions.pod:2111 +#: ../src/guestfs-actions.pod:3079 ../fish/guestfish-actions.pod:2141 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3046 ../fish/guestfish-actions.pod:2113 +#: ../src/guestfs-actions.pod:3081 ../fish/guestfish-actions.pod:2143 msgid "" "For package managers which use epochs, this contains the epoch of the " "package (an integer). If unavailable, this is returned as C<0>." @@ -11929,13 +12367,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3049 ../fish/guestfish-actions.pod:2116 +#: ../src/guestfs-actions.pod:3084 ../fish/guestfish-actions.pod:2146 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3051 ../fish/guestfish-actions.pod:2118 +#: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2148 msgid "" "The version string of the application or package. If unavailable this is " "returned as an empty string C<\"\">." @@ -11943,13 +12381,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3054 ../fish/guestfish-actions.pod:2121 +#: ../src/guestfs-actions.pod:3089 ../fish/guestfish-actions.pod:2151 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3056 ../fish/guestfish-actions.pod:2123 +#: ../src/guestfs-actions.pod:3091 ../fish/guestfish-actions.pod:2153 msgid "" "The release string of the application or package, for package managers that " "use this. If unavailable this is returned as an empty string C<\"\">." @@ -11957,13 +12395,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3060 ../fish/guestfish-actions.pod:2127 +#: ../src/guestfs-actions.pod:3095 ../fish/guestfish-actions.pod:2157 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3062 ../fish/guestfish-actions.pod:2129 +#: ../src/guestfs-actions.pod:3097 ../fish/guestfish-actions.pod:2159 msgid "" "The installation path of the application (on operating systems such as " "Windows which use installation paths). This path is in the format used by " @@ -11972,19 +12410,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3067 ../fish/guestfish-actions.pod:2134 +#: ../src/guestfs-actions.pod:3102 ../fish/guestfish-actions.pod:2164 msgid "If unavailable this is returned as an empty string C<\"\">." msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3069 ../fish/guestfish-actions.pod:2136 +#: ../src/guestfs-actions.pod:3104 ../fish/guestfish-actions.pod:2166 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3071 ../fish/guestfish-actions.pod:2138 +#: ../src/guestfs-actions.pod:3106 ../fish/guestfish-actions.pod:2168 msgid "" "The install path translated into a libguestfs path. If unavailable this is " "returned as an empty string C<\"\">." @@ -11992,13 +12430,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3074 ../fish/guestfish-actions.pod:2141 +#: ../src/guestfs-actions.pod:3109 ../fish/guestfish-actions.pod:2171 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3076 ../fish/guestfish-actions.pod:2143 +#: ../src/guestfs-actions.pod:3111 ../fish/guestfish-actions.pod:2173 msgid "" "The name of the publisher of the application, for package managers that use " "this. If unavailable this is returned as an empty string C<\"\">." @@ -12006,13 +12444,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3080 ../fish/guestfish-actions.pod:2147 +#: ../src/guestfs-actions.pod:3115 ../fish/guestfish-actions.pod:2177 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3082 ../fish/guestfish-actions.pod:2149 +#: ../src/guestfs-actions.pod:3117 ../fish/guestfish-actions.pod:2179 msgid "" "The URL (eg. upstream URL) of the application. If unavailable this is " "returned as an empty string C<\"\">." @@ -12020,13 +12458,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3085 ../fish/guestfish-actions.pod:2152 +#: ../src/guestfs-actions.pod:3120 ../fish/guestfish-actions.pod:2182 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3087 ../fish/guestfish-actions.pod:2154 +#: ../src/guestfs-actions.pod:3122 ../fish/guestfish-actions.pod:2184 msgid "" "For packaging systems which support this, the name of the source package. " "If unavailable this is returned as an empty string C<\"\">." @@ -12034,13 +12472,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3090 ../fish/guestfish-actions.pod:2157 +#: ../src/guestfs-actions.pod:3125 ../fish/guestfish-actions.pod:2187 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3092 ../fish/guestfish-actions.pod:2159 +#: ../src/guestfs-actions.pod:3127 ../fish/guestfish-actions.pod:2189 msgid "" "A short (usually one line) description of the application or package. If " "unavailable this is returned as an empty string C<\"\">." @@ -12048,13 +12486,13 @@ msgstr "" # type: =item #. type: =item -#: ../src/guestfs-actions.pod:3095 ../fish/guestfish-actions.pod:2162 +#: ../src/guestfs-actions.pod:3130 ../fish/guestfish-actions.pod:2192 msgid "C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3097 ../fish/guestfish-actions.pod:2164 +#: ../src/guestfs-actions.pod:3132 ../fish/guestfish-actions.pod:2194 msgid "" "A longer description of the application or package. If unavailable this is " "returned as an empty string C<\"\">." @@ -12062,7 +12500,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3104 +#: ../src/guestfs-actions.pod:3139 msgid "" "This function returns a C, or NULL if " "there was an error. I " @@ -12071,19 +12509,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3108 +#: ../src/guestfs-actions.pod:3143 msgid "(Added in 1.7.8)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3110 +#: ../src/guestfs-actions.pod:3145 msgid "guestfs_inspect_os" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3112 +#: ../src/guestfs-actions.pod:3147 #, no-wrap msgid "" " char **\n" @@ -12093,7 +12531,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3115 ../fish/guestfish-actions.pod:2175 +#: ../src/guestfs-actions.pod:3150 ../fish/guestfish-actions.pod:2205 msgid "" "This function uses other libguestfs functions and certain heuristics to " "inspect the disk(s) (usually disks belonging to a virtual machine), looking " @@ -12102,13 +12540,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3119 ../fish/guestfish-actions.pod:2179 +#: ../src/guestfs-actions.pod:3154 ../fish/guestfish-actions.pod:2209 msgid "The list returned is empty if no operating systems were found." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3121 ../fish/guestfish-actions.pod:2181 +#: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2211 msgid "" "If one operating system was found, then this returns a list with a single " "element, which is the name of the root filesystem of this operating system. " @@ -12119,7 +12557,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3128 +#: ../src/guestfs-actions.pod:3163 msgid "" "You can pass the root string(s) returned to other C " "functions in order to query further information about each operating system, " @@ -12128,7 +12566,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3133 +#: ../src/guestfs-actions.pod:3168 msgid "" "This function uses other libguestfs features such as C and " "C in order to mount and unmount filesystems and look at " @@ -12138,7 +12576,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2199 +#: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2229 msgid "" "This function cannot decrypt encrypted disks. The caller must do that first " "(supplying the necessary keys) if the disk is encrypted." @@ -12146,20 +12584,20 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3145 ../src/guestfs-actions.pod:3430 -#: ../src/guestfs-actions.pod:3492 +#: ../src/guestfs-actions.pod:3180 ../src/guestfs-actions.pod:3465 +#: ../src/guestfs-actions.pod:3527 msgid "See also C." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3153 +#: ../src/guestfs-actions.pod:3188 msgid "guestfs_is_blockdev" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3155 +#: ../src/guestfs-actions.pod:3190 #, no-wrap msgid "" " int\n" @@ -12170,7 +12608,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3159 ../fish/guestfish-actions.pod:2211 +#: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2241 msgid "" "This returns C if and only if there is a block device with the given " "C name." @@ -12178,30 +12616,30 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3162 ../src/guestfs-actions.pod:3191 -#: ../src/guestfs-actions.pod:3221 ../src/guestfs-actions.pod:3236 -#: ../src/guestfs-actions.pod:3252 ../src/guestfs-actions.pod:3308 -#: ../src/guestfs-actions.pod:3323 +#: ../src/guestfs-actions.pod:3197 ../src/guestfs-actions.pod:3226 +#: ../src/guestfs-actions.pod:3256 ../src/guestfs-actions.pod:3271 +#: ../src/guestfs-actions.pod:3287 ../src/guestfs-actions.pod:3343 +#: ../src/guestfs-actions.pod:3358 msgid "See also C." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3166 ../src/guestfs-actions.pod:3195 -#: ../src/guestfs-actions.pod:3240 ../src/guestfs-actions.pod:3312 -#: ../src/guestfs-actions.pod:3327 +#: ../src/guestfs-actions.pod:3201 ../src/guestfs-actions.pod:3230 +#: ../src/guestfs-actions.pod:3275 ../src/guestfs-actions.pod:3347 +#: ../src/guestfs-actions.pod:3362 msgid "(Added in 1.5.10)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3168 +#: ../src/guestfs-actions.pod:3203 msgid "guestfs_is_busy" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3170 +#: ../src/guestfs-actions.pod:3205 #, no-wrap msgid "" " int\n" @@ -12211,7 +12649,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3173 ../fish/guestfish-actions.pod:2220 +#: ../src/guestfs-actions.pod:3208 ../fish/guestfish-actions.pod:2250 msgid "" "This returns true iff this handle is busy processing a command (in the " "C state)." @@ -12219,13 +12657,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3182 +#: ../src/guestfs-actions.pod:3217 msgid "guestfs_is_chardev" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3184 +#: ../src/guestfs-actions.pod:3219 #, no-wrap msgid "" " int\n" @@ -12236,7 +12674,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3188 ../fish/guestfish-actions.pod:2229 +#: ../src/guestfs-actions.pod:3223 ../fish/guestfish-actions.pod:2259 msgid "" "This returns C if and only if there is a character device with the " "given C name." @@ -12244,13 +12682,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3197 +#: ../src/guestfs-actions.pod:3232 msgid "guestfs_is_config" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3199 +#: ../src/guestfs-actions.pod:3234 #, no-wrap msgid "" " int\n" @@ -12260,7 +12698,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2238 +#: ../src/guestfs-actions.pod:3237 ../fish/guestfish-actions.pod:2268 msgid "" "This returns true iff this handle is being configured (in the C " "state)." @@ -12268,13 +12706,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3211 +#: ../src/guestfs-actions.pod:3246 msgid "guestfs_is_dir" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3213 +#: ../src/guestfs-actions.pod:3248 #, no-wrap msgid "" " int\n" @@ -12285,7 +12723,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3217 ../fish/guestfish-actions.pod:2247 +#: ../src/guestfs-actions.pod:3252 ../fish/guestfish-actions.pod:2277 msgid "" "This returns C if and only if there is a directory with the given " "C name. Note that it returns false for other objects like files." @@ -12293,13 +12731,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3227 +#: ../src/guestfs-actions.pod:3262 msgid "guestfs_is_fifo" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3229 +#: ../src/guestfs-actions.pod:3264 #, no-wrap msgid "" " int\n" @@ -12310,7 +12748,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3233 ../fish/guestfish-actions.pod:2257 +#: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2287 msgid "" "This returns C if and only if there is a FIFO (named pipe) with the " "given C name." @@ -12318,13 +12756,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3242 +#: ../src/guestfs-actions.pod:3277 msgid "guestfs_is_file" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3244 +#: ../src/guestfs-actions.pod:3279 #, no-wrap msgid "" " int\n" @@ -12335,7 +12773,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3248 ../fish/guestfish-actions.pod:2266 +#: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2296 msgid "" "This returns C if and only if there is a regular file with the given " "C name. Note that it returns false for other objects like directories." @@ -12343,13 +12781,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3258 +#: ../src/guestfs-actions.pod:3293 msgid "guestfs_is_launching" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3260 +#: ../src/guestfs-actions.pod:3295 #, no-wrap msgid "" " int\n" @@ -12359,7 +12797,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3263 ../fish/guestfish-actions.pod:2276 +#: ../src/guestfs-actions.pod:3298 ../fish/guestfish-actions.pod:2306 msgid "" "This returns true iff this handle is launching the subprocess (in the " "C state)." @@ -12367,13 +12805,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3272 +#: ../src/guestfs-actions.pod:3307 msgid "guestfs_is_lv" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3274 +#: ../src/guestfs-actions.pod:3309 #, no-wrap msgid "" " int\n" @@ -12384,7 +12822,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3278 ../fish/guestfish-actions.pod:2285 +#: ../src/guestfs-actions.pod:3313 ../fish/guestfish-actions.pod:2315 msgid "" "This command tests whether C is a logical volume, and returns true " "iff this is the case." @@ -12392,13 +12830,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3285 +#: ../src/guestfs-actions.pod:3320 msgid "guestfs_is_ready" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3287 +#: ../src/guestfs-actions.pod:3322 #, no-wrap msgid "" " int\n" @@ -12408,7 +12846,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3290 ../fish/guestfish-actions.pod:2292 +#: ../src/guestfs-actions.pod:3325 ../fish/guestfish-actions.pod:2322 msgid "" "This returns true iff this handle is ready to accept commands (in the " "C state)." @@ -12416,13 +12854,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3299 +#: ../src/guestfs-actions.pod:3334 msgid "guestfs_is_socket" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3301 +#: ../src/guestfs-actions.pod:3336 #, no-wrap msgid "" " int\n" @@ -12433,7 +12871,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3305 ../fish/guestfish-actions.pod:2301 +#: ../src/guestfs-actions.pod:3340 ../fish/guestfish-actions.pod:2331 msgid "" "This returns C if and only if there is a Unix domain socket with the " "given C name." @@ -12441,13 +12879,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3314 +#: ../src/guestfs-actions.pod:3349 msgid "guestfs_is_symlink" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3316 +#: ../src/guestfs-actions.pod:3351 #, no-wrap msgid "" " int\n" @@ -12458,7 +12896,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3320 ../fish/guestfish-actions.pod:2310 +#: ../src/guestfs-actions.pod:3355 ../fish/guestfish-actions.pod:2340 msgid "" "This returns C if and only if there is a symbolic link with the given " "C name." @@ -12466,13 +12904,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3329 +#: ../src/guestfs-actions.pod:3364 msgid "guestfs_kill_subprocess" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3331 +#: ../src/guestfs-actions.pod:3366 #, no-wrap msgid "" " int\n" @@ -12482,19 +12920,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3334 ../fish/guestfish-actions.pod:2319 +#: ../src/guestfs-actions.pod:3369 ../fish/guestfish-actions.pod:2349 msgid "This kills the qemu subprocess. You should never need to call this." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3340 +#: ../src/guestfs-actions.pod:3375 msgid "guestfs_launch" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3342 +#: ../src/guestfs-actions.pod:3377 #, no-wrap msgid "" " int\n" @@ -12504,7 +12942,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3345 ../fish/guestfish-actions.pod:2327 +#: ../src/guestfs-actions.pod:3380 ../fish/guestfish-actions.pod:2357 msgid "" "Internally libguestfs is implemented by running a virtual machine using " "L." @@ -12512,7 +12950,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3348 ../fish/guestfish-actions.pod:2330 +#: ../src/guestfs-actions.pod:3383 ../fish/guestfish-actions.pod:2360 msgid "" "You should call this after configuring the handle (eg. adding drives) but " "before performing any actions." @@ -12520,13 +12958,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3355 +#: ../src/guestfs-actions.pod:3390 msgid "guestfs_lchown" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3357 +#: ../src/guestfs-actions.pod:3392 #, no-wrap msgid "" " int\n" @@ -12539,7 +12977,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3363 +#: ../src/guestfs-actions.pod:3398 msgid "" "Change the file owner to C and group to C. This is like " "C but if C is a symlink then the link itself is " @@ -12548,13 +12986,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3375 +#: ../src/guestfs-actions.pod:3410 msgid "guestfs_lgetxattr" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3377 +#: ../src/guestfs-actions.pod:3412 #, no-wrap msgid "" " char *\n" @@ -12567,7 +13005,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3383 ../fish/guestfish-actions.pod:2349 +#: ../src/guestfs-actions.pod:3418 ../fish/guestfish-actions.pod:2379 msgid "" "Get a single extended attribute from file C named C. If C " "is a symlink, then this call returns an extended attribute from the symlink." @@ -12575,19 +13013,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3397 +#: ../src/guestfs-actions.pod:3432 msgid "See also: C, C, L." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3405 +#: ../src/guestfs-actions.pod:3440 msgid "guestfs_lgetxattrs" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3407 +#: ../src/guestfs-actions.pod:3442 #, no-wrap msgid "" " struct guestfs_xattr_list *\n" @@ -12598,7 +13036,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3411 +#: ../src/guestfs-actions.pod:3446 msgid "" "This is the same as C, but if C is a symbolic link, " "then it returns the extended attributes of the link itself." @@ -12606,13 +13044,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3421 +#: ../src/guestfs-actions.pod:3456 msgid "guestfs_list_devices" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3423 +#: ../src/guestfs-actions.pod:3458 #, no-wrap msgid "" " char **\n" @@ -12622,25 +13060,25 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3426 ../fish/guestfish-actions.pod:2377 +#: ../src/guestfs-actions.pod:3461 ../fish/guestfish-actions.pod:2407 msgid "List all the block devices." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3428 ../fish/guestfish-actions.pod:2379 +#: ../src/guestfs-actions.pod:3463 ../fish/guestfish-actions.pod:2409 msgid "The full block device names are returned, eg. C." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3438 +#: ../src/guestfs-actions.pod:3473 msgid "guestfs_list_filesystems" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3440 +#: ../src/guestfs-actions.pod:3475 #, no-wrap msgid "" " char **\n" @@ -12650,7 +13088,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3443 ../fish/guestfish-actions.pod:2387 +#: ../src/guestfs-actions.pod:3478 ../fish/guestfish-actions.pod:2417 msgid "" "This inspection command looks for filesystems on partitions, block devices " "and logical volumes, returning a list of devices containing filesystems and " @@ -12659,7 +13097,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3447 ../fish/guestfish-actions.pod:2391 +#: ../src/guestfs-actions.pod:3482 ../fish/guestfish-actions.pod:2421 msgid "" "The return value is a hash, where the keys are the devices containing " "filesystems, and the values are the filesystem types. For example:" @@ -12667,7 +13105,7 @@ msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3451 ../fish/guestfish-actions.pod:2395 +#: ../src/guestfs-actions.pod:3486 ../fish/guestfish-actions.pod:2425 #, no-wrap msgid "" " \"/dev/sda1\" => \"ntfs\"\n" @@ -12679,7 +13117,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3456 ../fish/guestfish-actions.pod:2400 +#: ../src/guestfs-actions.pod:3491 ../fish/guestfish-actions.pod:2430 msgid "" "The value can have the special value \"unknown\", meaning the content of the " "device is undetermined or empty. \"swap\" means a Linux swap partition." @@ -12687,7 +13125,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3460 +#: ../src/guestfs-actions.pod:3495 msgid "" "This command runs other libguestfs commands, which might include " "C and C, and therefore you should use this " @@ -12696,7 +13134,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3464 +#: ../src/guestfs-actions.pod:3499 msgid "" "Not all of the filesystems returned will be mountable. In particular, swap " "partitions are returned in the list. Also this command does not check that " @@ -12707,19 +13145,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3478 ../src/guestfs-actions.pod:5083 +#: ../src/guestfs-actions.pod:3513 ../src/guestfs-actions.pod:5118 msgid "(Added in 1.5.15)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3480 +#: ../src/guestfs-actions.pod:3515 msgid "guestfs_list_partitions" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3482 +#: ../src/guestfs-actions.pod:3517 #, no-wrap msgid "" " char **\n" @@ -12729,19 +13167,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3485 ../fish/guestfish-actions.pod:2420 +#: ../src/guestfs-actions.pod:3520 ../fish/guestfish-actions.pod:2450 msgid "List all the partitions detected on all block devices." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3487 ../fish/guestfish-actions.pod:2422 +#: ../src/guestfs-actions.pod:3522 ../fish/guestfish-actions.pod:2452 msgid "The full partition device names are returned, eg. C" msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3489 +#: ../src/guestfs-actions.pod:3524 msgid "" "This does not return logical volumes. For that you will need to call " "C." @@ -12749,13 +13187,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3500 +#: ../src/guestfs-actions.pod:3535 msgid "guestfs_ll" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3502 +#: ../src/guestfs-actions.pod:3537 #, no-wrap msgid "" " char *\n" @@ -12766,7 +13204,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3506 ../fish/guestfish-actions.pod:2433 +#: ../src/guestfs-actions.pod:3541 ../fish/guestfish-actions.pod:2463 msgid "" "List the files in C (relative to the root directory, there is no " "cwd) in the format of 'ls -la'." @@ -12774,7 +13212,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3509 ../fish/guestfish-actions.pod:2436 +#: ../src/guestfs-actions.pod:3544 ../fish/guestfish-actions.pod:2466 msgid "" "This command is mostly useful for interactive sessions. It is I " "intended that you try to parse the output string." @@ -12782,13 +13220,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3517 +#: ../src/guestfs-actions.pod:3552 msgid "guestfs_ln" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3519 +#: ../src/guestfs-actions.pod:3554 #, no-wrap msgid "" " int\n" @@ -12800,19 +13238,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3524 ../fish/guestfish-actions.pod:2443 +#: ../src/guestfs-actions.pod:3559 ../fish/guestfish-actions.pod:2473 msgid "This command creates a hard link using the C command." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3530 +#: ../src/guestfs-actions.pod:3565 msgid "guestfs_ln_f" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3532 +#: ../src/guestfs-actions.pod:3567 #, no-wrap msgid "" " int\n" @@ -12824,7 +13262,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3537 ../fish/guestfish-actions.pod:2449 +#: ../src/guestfs-actions.pod:3572 ../fish/guestfish-actions.pod:2479 msgid "" "This command creates a hard link using the C command. The C<-f> " "option removes the link (C) if it exists already." @@ -12832,13 +13270,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3544 +#: ../src/guestfs-actions.pod:3579 msgid "guestfs_ln_s" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3546 +#: ../src/guestfs-actions.pod:3581 #, no-wrap msgid "" " int\n" @@ -12850,19 +13288,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3551 ../fish/guestfish-actions.pod:2456 +#: ../src/guestfs-actions.pod:3586 ../fish/guestfish-actions.pod:2486 msgid "This command creates a symbolic link using the C command." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3557 +#: ../src/guestfs-actions.pod:3592 msgid "guestfs_ln_sf" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3559 +#: ../src/guestfs-actions.pod:3594 #, no-wrap msgid "" " int\n" @@ -12874,7 +13312,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3564 ../fish/guestfish-actions.pod:2462 +#: ../src/guestfs-actions.pod:3599 ../fish/guestfish-actions.pod:2492 msgid "" "This command creates a symbolic link using the C command, The C<-f> " "option removes the link (C) if it exists already." @@ -12882,13 +13320,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3571 +#: ../src/guestfs-actions.pod:3606 msgid "guestfs_lremovexattr" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3573 +#: ../src/guestfs-actions.pod:3608 #, no-wrap msgid "" " int\n" @@ -12900,7 +13338,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3578 +#: ../src/guestfs-actions.pod:3613 msgid "" "This is the same as C, but if C is a symbolic " "link, then it removes an extended attribute of the link itself." @@ -12908,13 +13346,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3586 +#: ../src/guestfs-actions.pod:3621 msgid "guestfs_ls" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3588 +#: ../src/guestfs-actions.pod:3623 #, no-wrap msgid "" " char **\n" @@ -12925,7 +13363,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3592 ../fish/guestfish-actions.pod:2477 +#: ../src/guestfs-actions.pod:3627 ../fish/guestfish-actions.pod:2507 msgid "" "List the files in C (relative to the root directory, there is no " "cwd). The '.' and '..' entries are not returned, but hidden files are shown." @@ -12933,7 +13371,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3596 +#: ../src/guestfs-actions.pod:3631 msgid "" "This command is mostly useful for interactive sessions. Programs should " "probably use C instead." @@ -12941,13 +13379,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3605 +#: ../src/guestfs-actions.pod:3640 msgid "guestfs_lsetxattr" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3607 +#: ../src/guestfs-actions.pod:3642 #, no-wrap msgid "" " int\n" @@ -12961,7 +13399,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3614 +#: ../src/guestfs-actions.pod:3649 msgid "" "This is the same as C, but if C is a symbolic link, " "then it sets an extended attribute of the link itself." @@ -12969,13 +13407,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3622 +#: ../src/guestfs-actions.pod:3657 msgid "guestfs_lstat" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3624 +#: ../src/guestfs-actions.pod:3659 #, no-wrap msgid "" " struct guestfs_stat *\n" @@ -12986,14 +13424,14 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3628 ../src/guestfs-actions.pod:6182 -#: ../fish/guestfish-actions.pod:2496 ../fish/guestfish-actions.pod:4161 +#: ../src/guestfs-actions.pod:3663 ../src/guestfs-actions.pod:6221 +#: ../fish/guestfish-actions.pod:2526 ../fish/guestfish-actions.pod:4195 msgid "Returns file information for the given C." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3630 +#: ../src/guestfs-actions.pod:3665 msgid "" "This is the same as C except that if C is a symbolic " "link, then the link is stat-ed, not the file it refers to." @@ -13001,13 +13439,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3634 ../fish/guestfish-actions.pod:2502 +#: ../src/guestfs-actions.pod:3669 ../fish/guestfish-actions.pod:2532 msgid "This is the same as the C system call." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3636 ../src/guestfs-actions.pod:6186 +#: ../src/guestfs-actions.pod:3671 ../src/guestfs-actions.pod:6225 msgid "" "This function returns a C, or NULL if there was an " "error. I after use>." @@ -13015,20 +13453,20 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3640 ../src/guestfs-actions.pod:6190 -#: ../src/guestfs-actions.pod:6208 ../src/guestfs-actions.pod:6589 +#: ../src/guestfs-actions.pod:3675 ../src/guestfs-actions.pod:6229 +#: ../src/guestfs-actions.pod:6247 ../src/guestfs-actions.pod:6628 msgid "(Added in 0.9.2)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3642 +#: ../src/guestfs-actions.pod:3677 msgid "guestfs_lstatlist" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3644 +#: ../src/guestfs-actions.pod:3679 #, no-wrap msgid "" " struct guestfs_stat_list *\n" @@ -13040,7 +13478,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3649 +#: ../src/guestfs-actions.pod:3684 msgid "" "This call allows you to perform the C operation on multiple " "files, where all files are in the directory C. C is the list " @@ -13049,7 +13487,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3653 ../fish/guestfish-actions.pod:2512 +#: ../src/guestfs-actions.pod:3688 ../fish/guestfish-actions.pod:2542 msgid "" "On return you get a list of stat structs, with a one-to-one correspondence " "to the C list. If any name did not exist or could not be lstat'd, " @@ -13058,7 +13496,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3658 +#: ../src/guestfs-actions.pod:3693 msgid "" "This call is intended for programs that want to efficiently list a directory " "contents without making many round-trips. See also C " @@ -13070,7 +13508,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3666 +#: ../src/guestfs-actions.pod:3701 msgid "" "This function returns a C, or NULL if there was " "an error. I after use>." @@ -13078,13 +13516,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3672 +#: ../src/guestfs-actions.pod:3707 msgid "guestfs_luks_add_key" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3674 +#: ../src/guestfs-actions.pod:3709 #, no-wrap msgid "" " int\n" @@ -13098,7 +13536,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3681 ../fish/guestfish-actions.pod:2529 +#: ../src/guestfs-actions.pod:3716 ../fish/guestfish-actions.pod:2559 msgid "" "This command adds a new key on LUKS device C. C is any " "existing key, and is used to access the device. C is the new key to " @@ -13107,7 +13545,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3686 +#: ../src/guestfs-actions.pod:3721 msgid "" "Note that if C already contains a key, then this command will " "fail. You have to use C first to remove that key." @@ -13115,9 +13553,9 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3692 ../src/guestfs-actions.pod:3732 -#: ../src/guestfs-actions.pod:3755 ../src/guestfs-actions.pod:3775 -#: ../src/guestfs-actions.pod:3807 ../src/guestfs-actions.pod:3826 +#: ../src/guestfs-actions.pod:3727 ../src/guestfs-actions.pod:3767 +#: ../src/guestfs-actions.pod:3790 ../src/guestfs-actions.pod:3810 +#: ../src/guestfs-actions.pod:3842 ../src/guestfs-actions.pod:3861 msgid "" "This function takes a key or passphrase parameter which could contain " "sensitive material. Read the section L for more " @@ -13126,20 +13564,20 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3696 ../src/guestfs-actions.pod:3736 -#: ../src/guestfs-actions.pod:3759 ../src/guestfs-actions.pod:3779 +#: ../src/guestfs-actions.pod:3731 ../src/guestfs-actions.pod:3771 +#: ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:3814 msgid "(Added in 1.5.2)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3698 +#: ../src/guestfs-actions.pod:3733 msgid "guestfs_luks_close" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3700 +#: ../src/guestfs-actions.pod:3735 #, no-wrap msgid "" " int\n" @@ -13150,7 +13588,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3704 +#: ../src/guestfs-actions.pod:3739 msgid "" "This closes a LUKS device that was created earlier by C " "or C. The C parameter must be the name of the " @@ -13160,21 +13598,21 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3712 ../src/guestfs-actions.pod:3811 -#: ../src/guestfs-actions.pod:3830 ../src/guestfs-actions.pod:3880 -#: ../src/guestfs-actions.pod:3928 +#: ../src/guestfs-actions.pod:3747 ../src/guestfs-actions.pod:3846 +#: ../src/guestfs-actions.pod:3865 ../src/guestfs-actions.pod:3915 +#: ../src/guestfs-actions.pod:3963 msgid "(Added in 1.5.1)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3714 +#: ../src/guestfs-actions.pod:3749 msgid "guestfs_luks_format" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3716 +#: ../src/guestfs-actions.pod:3751 #, no-wrap msgid "" " int\n" @@ -13187,7 +13625,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3722 ../fish/guestfish-actions.pod:2555 +#: ../src/guestfs-actions.pod:3757 ../fish/guestfish-actions.pod:2585 msgid "" "This command erases existing data on C and formats the device as a " "LUKS encrypted device. C is the initial key, which is added to key " @@ -13196,15 +13634,15 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3729 ../src/guestfs-actions.pod:3752 -#: ../src/guestfs-actions.pod:3892 ../src/guestfs-actions.pod:4834 -#: ../src/guestfs-actions.pod:5614 ../src/guestfs-actions.pod:6017 -#: ../src/guestfs-actions.pod:6040 ../src/guestfs-actions.pod:6066 -#: ../src/guestfs-actions.pod:7226 ../fish/guestfish-actions.pod:2563 -#: ../fish/guestfish-actions.pod:2576 ../fish/guestfish-actions.pod:2660 -#: ../fish/guestfish-actions.pod:3234 ../fish/guestfish-actions.pod:3754 -#: ../fish/guestfish-actions.pod:4060 ../fish/guestfish-actions.pod:4076 -#: ../fish/guestfish-actions.pod:4091 ../fish/guestfish-actions.pod:4806 +#: ../src/guestfs-actions.pod:3764 ../src/guestfs-actions.pod:3787 +#: ../src/guestfs-actions.pod:3927 ../src/guestfs-actions.pod:4869 +#: ../src/guestfs-actions.pod:5649 ../src/guestfs-actions.pod:6056 +#: ../src/guestfs-actions.pod:6079 ../src/guestfs-actions.pod:6105 +#: ../src/guestfs-actions.pod:7265 ../fish/guestfish-actions.pod:2593 +#: ../fish/guestfish-actions.pod:2606 ../fish/guestfish-actions.pod:2690 +#: ../fish/guestfish-actions.pod:3264 ../fish/guestfish-actions.pod:3784 +#: ../fish/guestfish-actions.pod:4094 ../fish/guestfish-actions.pod:4110 +#: ../fish/guestfish-actions.pod:4125 ../fish/guestfish-actions.pod:4840 msgid "" "B." @@ -13212,13 +13650,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3738 +#: ../src/guestfs-actions.pod:3773 msgid "guestfs_luks_format_cipher" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3740 +#: ../src/guestfs-actions.pod:3775 #, no-wrap msgid "" " int\n" @@ -13232,7 +13670,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3747 +#: ../src/guestfs-actions.pod:3782 msgid "" "This command is the same as C but it also allows you to " "set the C used." @@ -13240,13 +13678,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3761 +#: ../src/guestfs-actions.pod:3796 msgid "guestfs_luks_kill_slot" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3763 +#: ../src/guestfs-actions.pod:3798 #, no-wrap msgid "" " int\n" @@ -13259,7 +13697,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3769 ../fish/guestfish-actions.pod:2583 +#: ../src/guestfs-actions.pod:3804 ../fish/guestfish-actions.pod:2613 msgid "" "This command deletes the key in key slot C from the encrypted LUKS " "device C. C must be one of the I keys." @@ -13267,13 +13705,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3781 +#: ../src/guestfs-actions.pod:3816 msgid "guestfs_luks_open" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3783 +#: ../src/guestfs-actions.pod:3818 #, no-wrap msgid "" " int\n" @@ -13286,7 +13724,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3789 ../fish/guestfish-actions.pod:2594 +#: ../src/guestfs-actions.pod:3824 ../fish/guestfish-actions.pod:2624 msgid "" "This command opens a block device which has been encrypted according to the " "Linux Unified Key Setup (LUKS) standard." @@ -13294,13 +13732,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3792 ../fish/guestfish-actions.pod:2597 +#: ../src/guestfs-actions.pod:3827 ../fish/guestfish-actions.pod:2627 msgid "C is the encrypted block device or partition." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3794 ../fish/guestfish-actions.pod:2599 +#: ../src/guestfs-actions.pod:3829 ../fish/guestfish-actions.pod:2629 msgid "" "The caller must supply one of the keys associated with the LUKS block " "device, in the C parameter." @@ -13308,7 +13746,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3797 ../fish/guestfish-actions.pod:2602 +#: ../src/guestfs-actions.pod:3832 ../fish/guestfish-actions.pod:2632 msgid "" "This creates a new block device called C. Reads and " "writes to this block device are decrypted from and encrypted to the " @@ -13317,7 +13755,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3801 +#: ../src/guestfs-actions.pod:3836 msgid "" "If this block device contains LVM volume groups, then calling " "C followed by C will make them " @@ -13326,13 +13764,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3813 +#: ../src/guestfs-actions.pod:3848 msgid "guestfs_luks_open_ro" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3815 +#: ../src/guestfs-actions.pod:3850 #, no-wrap msgid "" " int\n" @@ -13345,7 +13783,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3821 +#: ../src/guestfs-actions.pod:3856 msgid "" "This is the same as C except that a read-only mapping is " "created." @@ -13353,13 +13791,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3832 +#: ../src/guestfs-actions.pod:3867 msgid "guestfs_lvcreate" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3834 +#: ../src/guestfs-actions.pod:3869 #, no-wrap msgid "" " int\n" @@ -13372,7 +13810,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3840 ../fish/guestfish-actions.pod:2627 +#: ../src/guestfs-actions.pod:3875 ../fish/guestfish-actions.pod:2657 msgid "" "This creates an LVM logical volume called C on the volume group " "C, with C megabytes." @@ -13380,13 +13818,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3847 +#: ../src/guestfs-actions.pod:3882 msgid "guestfs_lvm_canonical_lv_name" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3849 +#: ../src/guestfs-actions.pod:3884 #, no-wrap msgid "" " char *\n" @@ -13397,7 +13835,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3853 ../fish/guestfish-actions.pod:2634 +#: ../src/guestfs-actions.pod:3888 ../fish/guestfish-actions.pod:2664 msgid "" "This converts alternative naming schemes for LVs that you might find to the " "canonical name. For example, C is converted to C parameter does not refer to a " "logical volume." @@ -13414,25 +13852,25 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3860 +#: ../src/guestfs-actions.pod:3895 msgid "See also C." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3865 +#: ../src/guestfs-actions.pod:3900 msgid "(Added in 1.5.24)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3867 +#: ../src/guestfs-actions.pod:3902 msgid "guestfs_lvm_clear_filter" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3869 +#: ../src/guestfs-actions.pod:3904 #, no-wrap msgid "" " int\n" @@ -13442,7 +13880,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3872 +#: ../src/guestfs-actions.pod:3907 msgid "" "This undoes the effect of C. LVM will be able to " "see every block device." @@ -13450,21 +13888,21 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3875 ../src/guestfs-actions.pod:3917 -#: ../fish/guestfish-actions.pod:2650 ../fish/guestfish-actions.pod:2681 +#: ../src/guestfs-actions.pod:3910 ../src/guestfs-actions.pod:3952 +#: ../fish/guestfish-actions.pod:2680 ../fish/guestfish-actions.pod:2711 msgid "" "This command also clears the LVM cache and performs a volume group scan." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3882 +#: ../src/guestfs-actions.pod:3917 msgid "guestfs_lvm_remove_all" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3884 +#: ../src/guestfs-actions.pod:3919 #, no-wrap msgid "" " int\n" @@ -13474,7 +13912,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3887 ../fish/guestfish-actions.pod:2657 +#: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2687 msgid "" "This command removes all LVM logical volumes, volume groups and physical " "volumes." @@ -13482,13 +13920,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3897 +#: ../src/guestfs-actions.pod:3932 msgid "guestfs_lvm_set_filter" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3899 +#: ../src/guestfs-actions.pod:3934 #, no-wrap msgid "" " int\n" @@ -13499,7 +13937,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3903 ../fish/guestfish-actions.pod:2667 +#: ../src/guestfs-actions.pod:3938 ../fish/guestfish-actions.pod:2697 msgid "" "This sets the LVM device filter so that LVM will only be able to \"see\" the " "block devices in the list C, and will ignore all other attached " @@ -13508,7 +13946,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3907 ../fish/guestfish-actions.pod:2671 +#: ../src/guestfs-actions.pod:3942 ../fish/guestfish-actions.pod:2701 msgid "" "Where disk image(s) contain duplicate PVs or VGs, this command is useful to " "get LVM to ignore the duplicates, otherwise LVM can get confused. Note also " @@ -13521,13 +13959,13 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3920 ../fish/guestfish-actions.pod:2684 +#: ../src/guestfs-actions.pod:3955 ../fish/guestfish-actions.pod:2714 msgid "You can filter whole block devices or individual partitions." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2686 +#: ../src/guestfs-actions.pod:3957 ../fish/guestfish-actions.pod:2716 msgid "" "You cannot use this if any VG is currently in use (eg. contains a mounted " "filesystem), even if you are not filtering out that VG." @@ -13535,13 +13973,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3930 +#: ../src/guestfs-actions.pod:3965 msgid "guestfs_lvremove" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3932 +#: ../src/guestfs-actions.pod:3967 #, no-wrap msgid "" " int\n" @@ -13552,7 +13990,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3936 ../fish/guestfish-actions.pod:2694 +#: ../src/guestfs-actions.pod:3971 ../fish/guestfish-actions.pod:2724 msgid "" "Remove an LVM logical volume C, where C is the path to the " "LV, such as C." @@ -13560,7 +13998,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3939 ../fish/guestfish-actions.pod:2697 +#: ../src/guestfs-actions.pod:3974 ../fish/guestfish-actions.pod:2727 msgid "" "You can also remove all LVs in a volume group by specifying the VG name, C." @@ -13568,20 +14006,20 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:5180 -#: ../src/guestfs-actions.pod:6965 +#: ../src/guestfs-actions.pod:3979 ../src/guestfs-actions.pod:5215 +#: ../src/guestfs-actions.pod:7004 msgid "(Added in 1.0.13)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3946 +#: ../src/guestfs-actions.pod:3981 msgid "guestfs_lvrename" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3948 +#: ../src/guestfs-actions.pod:3983 #, no-wrap msgid "" " int\n" @@ -13593,25 +14031,25 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3953 ../fish/guestfish-actions.pod:2704 +#: ../src/guestfs-actions.pod:3988 ../fish/guestfish-actions.pod:2734 msgid "Rename a logical volume C with the new name C." msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3957 ../src/guestfs-actions.pod:6978 +#: ../src/guestfs-actions.pod:3992 ../src/guestfs-actions.pod:7017 msgid "(Added in 1.0.83)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3959 +#: ../src/guestfs-actions.pod:3994 msgid "guestfs_lvresize" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3961 +#: ../src/guestfs-actions.pod:3996 #, no-wrap msgid "" " int\n" @@ -13623,7 +14061,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3966 ../fish/guestfish-actions.pod:2710 +#: ../src/guestfs-actions.pod:4001 ../fish/guestfish-actions.pod:2740 msgid "" "This resizes (expands or shrinks) an existing LVM logical volume to " "C. When reducing, data in the reduced part is lost." @@ -13631,13 +14069,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3974 +#: ../src/guestfs-actions.pod:4009 msgid "guestfs_lvresize_free" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3976 +#: ../src/guestfs-actions.pod:4011 #, no-wrap msgid "" " int\n" @@ -13649,7 +14087,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3981 ../fish/guestfish-actions.pod:2718 +#: ../src/guestfs-actions.pod:4016 ../fish/guestfish-actions.pod:2748 msgid "" "This expands an existing logical volume C so that it fills C% of the " "remaining free space in the volume group. Commonly you would call this with " @@ -13659,19 +14097,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3989 +#: ../src/guestfs-actions.pod:4024 msgid "(Added in 1.3.3)" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:3991 +#: ../src/guestfs-actions.pod:4026 msgid "guestfs_lvs" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:3993 +#: ../src/guestfs-actions.pod:4028 #, no-wrap msgid "" " char **\n" @@ -13681,7 +14119,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3996 ../fish/guestfish-actions.pod:2728 +#: ../src/guestfs-actions.pod:4031 ../fish/guestfish-actions.pod:2758 msgid "" "List all the logical volumes detected. This is the equivalent of the L command." @@ -13689,7 +14127,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:3999 ../fish/guestfish-actions.pod:2731 +#: ../src/guestfs-actions.pod:4034 ../fish/guestfish-actions.pod:2761 msgid "" "This returns a list of the logical volume device names (eg. C)." @@ -13697,19 +14135,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4002 +#: ../src/guestfs-actions.pod:4037 msgid "See also C, C." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:4010 +#: ../src/guestfs-actions.pod:4045 msgid "guestfs_lvs_full" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:4012 +#: ../src/guestfs-actions.pod:4047 #, no-wrap msgid "" " struct guestfs_lvm_lv_list *\n" @@ -13719,7 +14157,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4015 ../fish/guestfish-actions.pod:2740 +#: ../src/guestfs-actions.pod:4050 ../fish/guestfish-actions.pod:2770 msgid "" "List all the logical volumes detected. This is the equivalent of the L command. The \"full\" version includes all fields." @@ -13727,7 +14165,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4018 +#: ../src/guestfs-actions.pod:4053 msgid "" "This function returns a C, or NULL if there " "was an error. I after use>." @@ -13735,13 +14173,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:4024 +#: ../src/guestfs-actions.pod:4059 msgid "guestfs_lvuuid" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:4026 +#: ../src/guestfs-actions.pod:4061 #, no-wrap msgid "" " char *\n" @@ -13752,19 +14190,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4030 ../fish/guestfish-actions.pod:2747 +#: ../src/guestfs-actions.pod:4065 ../fish/guestfish-actions.pod:2777 msgid "This command returns the UUID of the LVM LV C." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:4037 +#: ../src/guestfs-actions.pod:4072 msgid "guestfs_lxattrlist" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:4039 +#: ../src/guestfs-actions.pod:4074 #, no-wrap msgid "" " struct guestfs_xattr_list *\n" @@ -13776,7 +14214,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4044 ../fish/guestfish-actions.pod:2753 +#: ../src/guestfs-actions.pod:4079 ../fish/guestfish-actions.pod:2783 msgid "" "This call allows you to get the extended attributes of multiple files, where " "all files are in the directory C. C is the list of files from " @@ -13785,7 +14223,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4048 ../fish/guestfish-actions.pod:2757 +#: ../src/guestfs-actions.pod:4083 ../fish/guestfish-actions.pod:2787 msgid "" "On return you get a flat list of xattr structs which must be interpreted " "sequentially. The first xattr struct always has a zero-length C. " @@ -13798,7 +14236,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4058 +#: ../src/guestfs-actions.pod:4093 msgid "" "This call is intended for programs that want to efficiently list a directory " "contents without making many round-trips. See also C for " @@ -13810,13 +14248,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:4072 +#: ../src/guestfs-actions.pod:4107 msgid "guestfs_mkdir" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:4074 +#: ../src/guestfs-actions.pod:4109 #, no-wrap msgid "" " int\n" @@ -13827,19 +14265,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4078 ../fish/guestfish-actions.pod:2779 +#: ../src/guestfs-actions.pod:4113 ../fish/guestfish-actions.pod:2809 msgid "Create a directory named C." msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:4084 +#: ../src/guestfs-actions.pod:4119 msgid "guestfs_mkdir_mode" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:4086 +#: ../src/guestfs-actions.pod:4121 #, no-wrap msgid "" " int\n" @@ -13851,7 +14289,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2785 +#: ../src/guestfs-actions.pod:4126 ../fish/guestfish-actions.pod:2815 msgid "" "This command creates a directory, setting the initial permissions of the " "directory to C." @@ -13859,7 +14297,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4094 ../fish/guestfish-actions.pod:2788 +#: ../src/guestfs-actions.pod:4129 ../fish/guestfish-actions.pod:2818 msgid "" "For common Linux filesystems, the actual mode which is set will be C. Non-native-Linux filesystems may interpret the mode in " @@ -13868,19 +14306,19 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4098 +#: ../src/guestfs-actions.pod:4133 msgid "See also C, C" msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:4104 +#: ../src/guestfs-actions.pod:4139 msgid "guestfs_mkdir_p" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:4106 +#: ../src/guestfs-actions.pod:4141 #, no-wrap msgid "" " int\n" @@ -13891,7 +14329,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4110 ../fish/guestfish-actions.pod:2798 +#: ../src/guestfs-actions.pod:4145 ../fish/guestfish-actions.pod:2828 msgid "" "Create a directory named C, creating any parent directories as " "necessary. This is like the C shell command." @@ -13899,13 +14337,13 @@ msgstr "" # type: =head2 #. type: =head2 -#: ../src/guestfs-actions.pod:4117 +#: ../src/guestfs-actions.pod:4152 msgid "guestfs_mkdtemp" msgstr "" # type: verbatim #. type: verbatim -#: ../src/guestfs-actions.pod:4119 +#: ../src/guestfs-actions.pod:4154 #, no-wrap msgid "" " char *\n" @@ -13916,7 +14354,7 @@ msgstr "" # type: textblock #. type: textblock -#: ../src/guestfs-actions.pod:4123 ../fish/guestfish-actions.pod:2805 +#: ../src/guestfs-actions.pod:4158 ../fish/guestfish-actions.pod:2835 msgid "" "This command creates a temporary directory. The C