inspector: Add detection of Slackware.
[libguestfs.git] / po-docs / ja.po
index 8deb477..664967a 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
-"POT-Creation-Date: 2011-02-06 17:14+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 <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\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<Note:> 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<guestfs_set_log_message_callback>, "
+"C<guestfs_set_subprocess_quit_callback>, "
+"C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
+"C<guestfs_set_progress_callback> 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
+#: ../src/guestfs.pod:1702
+msgid ""
+"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
 #. type: textblock
-#: ../src/guestfs.pod:1689
+#: ../src/guestfs.pod:1718
 msgid ""
-"Use the C<guestfs_set_*_callback> functions to set a callback for different "
-"types of events."
+"The callback function will be called while the handle is being closed "
+"(synchronously from L</guestfs_close>)."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs.pod:1692
+#: ../src/guestfs.pod:1721
 msgid ""
-"Only I<one callback of each type> can be registered for each handle.  "
-"Calling C<guestfs_set_*_callback> again overwrites the previous callback of "
-"that type.  Cancel all callbacks of this type by calling this function with "
-"C<cb> set to C<NULL>."
+"Note that libguestfs installs an L<atexit(3)> 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<exit(3)>, 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</guestfs_kill_subprocess>.  (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 function C<cb> will be called whenever qemu or the guest writes "
-"anything to the console."
+"The callback receives in the payload four unsigned 64 bit numbers which are "
+"(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs.pod:1761
+msgid ""
+"The units of C<total> are not defined, although for some operations C<total> "
+"may relate in some way to the amount of data to be transferred (eg. in bytes "
+"or megabytes), and C<position> 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<position>:C<total>."
 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<lt>= C<position> E<lt>= C<total>"
 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<position> = C<total>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs.pod:1720
+#: ../src/guestfs.pod:1784
 msgid ""
-"The callback function C<cb> will be called when the child process quits, "
-"either asynchronously or if killed by L</guestfs_kill_subprocess>.  (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<proc_nr>) and serial "
+"number (C<serial>) 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<cb> 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</guestfs_set_verbose>) is set before launch (L</"
+"guestfs_launch>) 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</guestfs_set_verbose>) 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</guestfs_set_trace>) 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<cb> will be called while the handle is being closed "
-"(synchronously from L</guestfs_close>)."
+"This function registers a callback (C<cb>) for all event classes in the "
+"C<event_bitmask>."
 msgstr ""
 
-# type: textblock
 #. type: textblock
-#: ../src/guestfs.pod:1746
+#: ../src/guestfs.pod:1849
 msgid ""
-"Note that libguestfs installs an L<atexit(3)> 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<exit(3)>, 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<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
+"To register a single callback for all possible classes of events, use "
+"C<GUESTFS_EVENT_ALL>."
 msgstr ""
 
-# type: =head2
-#. type: =head2
-#: ../src/guestfs.pod:1754
-msgid "guestfs_set_progress_callback"
+#. type: textblock
+#: ../src/guestfs.pod:1855
+msgid "C<flags> should always be passed as 0."
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs.pod:1857
+msgid ""
+"C<opaque> 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</guestfs_last_error> 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<event_handle> should be "
+"the integer that was returned by a previous call to "
+"C<guestfs_set_event_callback> 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<position> and C<total>.  The units of "
-"C<total> are not defined, although for some operations C<total> may relate "
-"in some way to the amount of data to be transferred (eg. in bytes or "
-"megabytes), and C<position> 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<g>), the opaque user pointer "
+"(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
+"handle, and C<flags> 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<position>:C<total>."
+"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<lt>= C<position> E<lt>= C<total>"
+#: ../src/guestfs.pod:1904
+msgid ""
+"C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, 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<position> = C<total>."
+"C<array> and C<array_len> 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<le> 1.8 these were sent "
+"unconditionally to C<stderr>."
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs.pod:1917
+msgid ""
+"Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
+"C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
+"messages are not events; you must capture error messages separately)."
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs.pod:1922
+msgid ""
+"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
 #. type: textblock
-#: ../src/guestfs.pod:1799
+#: ../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 ""
-"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."
+" 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<key> is the name to associate with this data, and C<data> is an arbitrary "
 "pointer (which can be C<NULL>).  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<key> 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<NULL> if either no data is found associated with "
 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
 "C<NULL>."
 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<data> pointer in any "
 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
 "all.  In particular, libguestfs does I<not> 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</guestfs_close> or must set up a close callback to "
-"do it (see L</guestfs_set_close_callback>, and note that only one callback "
-"can be registered for a handle)."
+"do it (see L</GUESTFS_EVENT_CLOSE>)."
+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<guestfs_first_private> 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<NULL> is "
+"returned if there are no keys stored in the handle."
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs.pod:2000
+msgid ""
+"C<guestfs_next_private> returns the next key, pointer pair.  The return "
+"value of this function is also C<NULL> 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<guestfs_set_private> 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<guestfs_first_private>.  This internal iterator is invalidated when you "
+"call C<guestfs_set_private>."
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs.pod:2021
+msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
+msgstr ""
+
+#. type: verbatim
+#: ../src/guestfs.pod:2023
+#, no-wrap
+msgid ""
+" guestfs_set_private (g, key, NULL);\n"
+"\n"
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs.pod:2025
+msgid "then that C<key> 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<guestfs_first_private>, "
+"C<guestfs_next_private> or C<guestfs_set_private>."
+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<g>:"
+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<foo_>.  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
 #. type: textblock
-#: ../src/guestfs.pod:1839
+#: ../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<foo_>:"
+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 ""
 "<!-- old anchor for the next section --> <a name="
 "\"state_machine_and_low_level_event_api\"/>"
@@ -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(1)>.  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</guestfs_launch> 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</guestfs_kill_subprocess>, 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</guestfs_add_drive> 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</guestfs_launch> 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</guestfs_mount> 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<src/guestfs_protocol.x> (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<FileIn> "
 "and C<FileOut> 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<guestfs_I<foo>_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<guestfs_proc>) 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<guestfs_I<foo>_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<guestfs_I<foo>_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<GUESTFS_MESSAGE_MAX>."
 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<guestfs_message_error> 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<FileIn> parameter indicates that we transfer a file I<into> 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<data_len> 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<and> 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<GUESTFS_CANCEL_FLAG> 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<GUESTFS_LAUNCH_FLAG>) "
 "which indicates that the guest and daemon is alive.  This is what L</"
@@ -4603,31 +4988,30 @@ msgstr ""
 
 # type: =head3
 #. type: =head3
-#: ../src/guestfs.pod:2096
+#: ../src/guestfs.pod:2337
 msgid "PROGRESS NOTIFICATION MESSAGES"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs.pod:2098
+#: ../src/guestfs.pod:2339
 msgid ""
 "The daemon may send progress notification messages at any time.  These are "
 "distinguished by the normal length word being replaced by "
 "C<GUESTFS_PROGRESS_FLAG>, 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<guestfs_set_progress_callback>) if there is a callback registered, or "
-"discards them if not."
+"The library turns them into progress callbacks (see L</"
+"GUESTFS_EVENT_PROGRESS>) 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<daemon/proto.c:notify_progress>).  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<don't> 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<generator/generator_actions.ml>."
 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<daemon_functions> 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<non_daemon_functions> 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 C<do_E<lt>nameE<gt>> in the "
 "C<daemon/> directory."
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2217
+#: ../src/guestfs.pod:2458
 msgid ""
 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
 "(note: double underscore) in the C<src/> 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<make> 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<generator/"
@@ -4850,61 +5234,61 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2238
+#: ../src/guestfs.pod:2479
 msgid ""
 "The following describes the test environment used when you add an API test "
 "in C<generator_actions.ml>."
 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</dev/sda> 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</dev/sdb> 50MB"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2251
+#: ../src/guestfs.pod:2492
 msgid ""
 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
 "operations."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2254
+#: ../src/guestfs.pod:2495
 msgid "C</dev/sdc> 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</dev/sdd>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2260
+#: ../src/guestfs.pod:2501
 msgid "ISO with fixed content (see C<images/test.iso>)."
 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<Init*> expressions, described in C<generator/generator_types.ml>.  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<make check>."
 msgstr ""
 
 #. type: verbatim
-#: ../src/guestfs.pod:2283
+#: ../src/guestfs.pod:2524
 #, no-wrap
 msgid ""
 " SKIP_TEST_<CMD>_<NUM>=1\n"
@@ -4947,17 +5331,17 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2285
+#: ../src/guestfs.pod:2526
 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
 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_<CMD>=1\n"
@@ -4965,17 +5349,17 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2291
+#: ../src/guestfs.pod:2532
 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> 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<capitests/tests.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<cat /sysroot/some\\ path\\ with\\ spaces>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2378
+#: ../src/guestfs.pod:2619
 msgid ""
 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
 "{,r,v,rv}()> 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<http://www.redhat.com/mailman/listinfo/"
 "libguestfs> and CC to L<rjones@redhat.com>."
 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<appliance>"
 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<capitests>"
 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<cat>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2417
+#: ../src/guestfs.pod:2658
 msgid ""
 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
 "documentation."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2420
+#: ../src/guestfs.pod:2661
 msgid "C<contrib>"
 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<daemon>"
 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<df>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2431
+#: ../src/guestfs.pod:2672
 msgid "L<virt-df(1)> command and documentation."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2433
+#: ../src/guestfs.pod:2674
 msgid "C<examples>"
 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<fish>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2439
+#: ../src/guestfs.pod:2680
 msgid ""
 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
@@ -5290,90 +5674,90 @@ msgid ""
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2443
+#: ../src/guestfs.pod:2684
 msgid "C<fuse>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2445
+#: ../src/guestfs.pod:2686
 msgid ""
 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2447
+#: ../src/guestfs.pod:2688
 msgid "C<generator>"
 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<images>"
 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<inspector>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2460
+#: ../src/guestfs.pod:2701
 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2462
+#: ../src/guestfs.pod:2703
 msgid "C<logo>"
 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<m4>"
 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<po>"
 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<po-docs>"
 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<po> directory, but that "
@@ -5381,130 +5765,130 @@ msgid ""
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2480
+#: ../src/guestfs.pod:2721
 msgid "C<regressions>"
 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<rescue>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2486
+#: ../src/guestfs.pod:2727
 msgid "L<virt-rescue(1)> command and documentation."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2488
+#: ../src/guestfs.pod:2729
 msgid "C<src>"
 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<tools>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs.pod:2494
+#: ../src/guestfs.pod:2735
 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2496
+#: ../src/guestfs.pod:2737
 msgid "C<test-tool>"
 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<csharp>"
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2503
+#: ../src/guestfs.pod:2744
 msgid "C<haskell>"
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2505
+#: ../src/guestfs.pod:2746
 msgid "C<java>"
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2507
+#: ../src/guestfs.pod:2748
 msgid "C<ocaml>"
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2509
+#: ../src/guestfs.pod:2750
 msgid "C<php>"
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2511
+#: ../src/guestfs.pod:2752
 msgid "C<perl>"
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2513
+#: ../src/guestfs.pod:2754
 msgid "C<python>"
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs.pod:2515
+#: ../src/guestfs.pod:2756
 msgid "C<ruby>"
 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<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
 "effect as calling C<guestfs_set_verbose (g, 1)>."
@@ -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</PATH> 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</QEMU WRAPPERS> 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<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
 "effect as calling C<guestfs_set_trace (g, 1)>."
@@ -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</tmp> except for the cached "
 "supermin appliance which defaults to C</var/tmp>."
 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-tar.pl:286 ../tools/virt-make-fs.pl:534
+#: ../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<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
@@ -5627,7 +6010,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs.pod:2601
+#: ../src/guestfs.pod:2842
 msgid ""
 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
 "(8)>, L<disktype(1)>."
@@ -5635,20 +6018,20 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: ../src/guestfs.pod:2608 ../tools/virt-win-reg.pl:587
-#: ../tools/virt-make-fs.pl:548
+#: ../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<https://bugzilla.redhat.com/buglist.cgi?"
 "component=libguestfs&product=Virtualization+Tools>"
@@ -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<https://bugzilla.redhat.com/enter_bug.cgi?"
 "component=libguestfs&product=Virtualization+Tools>"
@@ -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<complete, unedited> output into the "
 "bug report."
@@ -5702,39 +6085,39 @@ 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<rjones at redhat dot com>)"
 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-tar.pl:305 ../tools/virt-make-fs.pl:563
+#: ../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"
 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<http://libguestfs.org/>"
 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</CALLS WITH OPTIONAL ARGUMENTS>."
 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<The caller must free "
 "the returned string after use>."
@@ -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<environ(3)"
 ">), or NULL if there was an error.  I<The caller must free the strings and "
@@ -6883,15 +7267,15 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1421
-#: ../src/guestfs-actions.pod:3225 ../src/guestfs-actions.pod:3256
-#: ../src/guestfs-actions.pod:3845 ../src/guestfs-actions.pod:3895
-#: ../src/guestfs-actions.pod:4082 ../src/guestfs-actions.pod:4115
-#: ../src/guestfs-actions.pod:4278 ../src/guestfs-actions.pod:4706
-#: ../src/guestfs-actions.pod:5163 ../src/guestfs-actions.pod:5558
-#: ../src/guestfs-actions.pod:5572 ../src/guestfs-actions.pod:5584
-#: ../src/guestfs-actions.pod:6020 ../src/guestfs-actions.pod:6658
-#: ../src/guestfs-actions.pod:6671 ../src/guestfs-actions.pod:6910
-#: ../src/guestfs-actions.pod:7146
+#: ../src/guestfs-actions.pod:3260 ../src/guestfs-actions.pod:3291
+#: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:3930
+#: ../src/guestfs-actions.pod:4117 ../src/guestfs-actions.pod:4150
+#: ../src/guestfs-actions.pod:4313 ../src/guestfs-actions.pod:4741
+#: ../src/guestfs-actions.pod:5198 ../src/guestfs-actions.pod:5593
+#: ../src/guestfs-actions.pod:5607 ../src/guestfs-actions.pod:5619
+#: ../src/guestfs-actions.pod:6059 ../src/guestfs-actions.pod:6697
+#: ../src/guestfs-actions.pod:6710 ../src/guestfs-actions.pod:6949
+#: ../src/guestfs-actions.pod:7185
 msgid "(Added in 0.8)"
 msgstr ""
 
@@ -7366,14 +7750,14 @@ msgstr ""
 #: ../src/guestfs-actions.pod:1920 ../src/guestfs-actions.pod:1992
 #: ../src/guestfs-actions.pod:2047 ../src/guestfs-actions.pod:2062
 #: ../src/guestfs-actions.pod:2087 ../src/guestfs-actions.pod:2110
-#: ../src/guestfs-actions.pod:2965 ../src/guestfs-actions.pod:2982
-#: ../src/guestfs-actions.pod:3001 ../src/guestfs-actions.pod:3164
-#: ../src/guestfs-actions.pod:3178 ../src/guestfs-actions.pod:3193
-#: ../src/guestfs-actions.pod:3207 ../src/guestfs-actions.pod:3223
-#: ../src/guestfs-actions.pod:3238 ../src/guestfs-actions.pod:3254
-#: ../src/guestfs-actions.pod:3268 ../src/guestfs-actions.pod:3281
-#: ../src/guestfs-actions.pod:3295 ../src/guestfs-actions.pod:3310
-#: ../src/guestfs-actions.pod:3325 ../src/guestfs-actions.pod:4851
+#: ../src/guestfs-actions.pod:3000 ../src/guestfs-actions.pod:3017
+#: ../src/guestfs-actions.pod:3036 ../src/guestfs-actions.pod:3199
+#: ../src/guestfs-actions.pod:3213 ../src/guestfs-actions.pod:3228
+#: ../src/guestfs-actions.pod:3242 ../src/guestfs-actions.pod:3258
+#: ../src/guestfs-actions.pod:3273 ../src/guestfs-actions.pod:3289
+#: ../src/guestfs-actions.pod:3303 ../src/guestfs-actions.pod:3316
+#: ../src/guestfs-actions.pod:3330 ../src/guestfs-actions.pod:3345
+#: ../src/guestfs-actions.pod:3360 ../src/guestfs-actions.pod:4886
 msgid "This function returns a C truth value on success or -1 on error."
 msgstr ""
 
@@ -7650,7 +8034,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:6838
+#: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:6877
 msgid "(Added in 1.0.75)"
 msgstr ""
 
@@ -7673,8 +8057,8 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5338
-#: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3567
+#: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5373
+#: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3597
 msgid "Return the contents of the file named C<path>."
 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<guestfs(3)/PROTOCOL LIMITS>."
@@ -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<filename> 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<guestfs(3)>."
 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<guestfs(3)>."
 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<guestfs_getxattrs>.  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<name>, 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<The caller must free the returned buffer "
@@ -10306,7 +10690,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:2157 ../src/guestfs-actions.pod:3403
+#: ../src/guestfs-actions.pod:2157 ../src/guestfs-actions.pod:3438
 msgid "(Added in 1.7.24)"
 msgstr ""
 
@@ -10350,8 +10734,8 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:2173 ../src/guestfs-actions.pod:3415
-#: ../src/guestfs-actions.pod:4066
+#: ../src/guestfs-actions.pod:2173 ../src/guestfs-actions.pod:3450
+#: ../src/guestfs-actions.pod:4101
 msgid ""
 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
 "an error.  I<The caller must call C<guestfs_free_xattr_list> 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<nrlines> 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<guestfs_inspect_os>."
@@ -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<guestfs(3)/INSPECTION> 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 "
@@ -11619,15 +12003,69 @@ msgid ""
 "returned."
 msgstr ""
 
-# type: =head2
 #. 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<HKLM"
+"\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
+"is usually a string such as C<Client> or C<Server> (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<Client> and "
+"the latter is C<Server>)."
+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<Desktop>, C<Server> and so on.  But this is not "
+"implemented at present."
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs-actions.pod:2890 ../fish/guestfish-actions.pod:1990
+msgid ""
+"If the product variant could not be determined, then the string C<unknown> "
+"is returned."
+msgstr ""
+
+#. type: textblock
+#: ../src/guestfs-actions.pod:2893
+msgid ""
+"Please read L<guestfs(3)/INSPECTION> for more details.  See also "
+"C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
+msgstr ""
+
+# type: =head2
+#. type: =head2
+#: ../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<guestfs_inspect_os>, 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<guestfs_inspect_os>."
@@ -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</WINDOWS>."
@@ -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<guestfs_inspect_get_format> returns C<installer> (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<guestfs_inspect_get_format> returns C<installer> (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<guestfs_inspect_get_format> returns C<installer> (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<Note:> This call works differently from other parts of the inspection "
 "API.  You have to call C<guestfs_inspect_os>, 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<app_name>"
 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<app_display_name>"
 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<app_name> 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<app_epoch>"
 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<app_version>"
 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<app_release>"
 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<app_install_path>"
 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<app_trans_path>"
 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<app_publisher>"
 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<app_url>"
 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<app_source_package>"
 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<app_summary>"
 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<app_description>"
 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<struct guestfs_application_list *>, or NULL if "
 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
@@ -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<guestfs_inspect_get_*> "
 "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<guestfs_mount_ro> and "
 "C<guestfs_umount_all> 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<guestfs_list_filesystems>."
 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<true> if and only if there is a block device with the given "
 "C<path> 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<guestfs_stat>."
 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<BUSY> 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<true> if and only if there is a character device with the "
 "given C<path> 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<CONFIG> "
 "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<true> if and only if there is a directory with the given "
 "C<path> 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<true> if and only if there is a FIFO (named pipe)  with the "
 "given C<path> 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<true> if and only if there is a regular file with the given "
 "C<path> 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<LAUNCHING> 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<device> 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<READY> 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<true> if and only if there is a Unix domain socket with the "
 "given C<path> 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<true> if and only if there is a symbolic link with the given "
 "C<path> 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<qemu(1)>."
@@ -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<owner> and group to C<group>.  This is like "
 "C<guestfs_chown> but if C<path> 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<path> named C<name>.  If C<path> "
 "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<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
 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<guestfs_getxattrs>, but if C<path> 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</dev/sda>."
 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<guestfs_mount> and C<guestfs_umount>, 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</dev/sda1>"
 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<guestfs_lvs>."
@@ -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<directory> (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<not> "
 "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<ln> 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<ln -f> command.  The C<-f> "
 "option removes the link (C<linkname>) 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<ln -s> 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<ln -sf> command, The C<-f> "
 "option removes the link (C<linkname>) 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<guestfs_removexattr>, but if C<path> 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<directory> (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<guestfs_readdir> 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<guestfs_setxattr>, but if C<path> 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<path>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:3630
+#: ../src/guestfs-actions.pod:3665
 msgid ""
 "This is the same as C<guestfs_stat> except that if C<path> 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<lstat(2)> 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<struct guestfs_stat *>, or NULL if there was an "
 "error.  I<The caller must call C<guestfs_free_stat> 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<guestfs_lstat> operation on multiple "
 "files, where all files are in the directory C<path>.  C<names> 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<names> 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<guestfs_lxattrlist> "
@@ -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<struct guestfs_stat_list *>, or NULL if there was "
 "an error.  I<The caller must call C<guestfs_free_stat_list> 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<device>.  C<key> is any "
 "existing key, and is used to access the device.  C<newkey> 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<keyslot> already contains a key, then this command will "
 "fail.  You have to use C<guestfs_luks_kill_slot> 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</KEYS AND PASSPHRASES> 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<guestfs_luks_open> "
 "or C<guestfs_luks_open_ro>.  The C<device> 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<device> and formats the device as a "
 "LUKS encrypted device.  C<key> 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<This command is dangerous.  Without careful use you can easily destroy all "
 "your data>."
@@ -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<guestfs_luks_format> but it also allows you to "
 "set the C<cipher> 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<keyslot> from the encrypted LUKS "
 "device C<device>.  C<key> must be one of the I<other> 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<device> 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<key> 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</dev/mapper/mapname>.  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<guestfs_vgscan> followed by C<guestfs_vg_activate_all> 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<guestfs_luks_open> 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<logvol> on the volume group "
 "C<volgroup>, with C<size> 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</dev/mapper/VG-LV> is converted to C</dev/VG/"
@@ -13406,7 +13844,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:3857 ../fish/guestfish-actions.pod:2638
+#: ../src/guestfs-actions.pod:3892 ../fish/guestfish-actions.pod:2668
 msgid ""
 "This command returns an error if the C<lvname> 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<guestfs_is_lv>."
 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<guestfs_lvm_set_filter>.  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<devices>, 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<device>, where C<device> is the path to the "
 "LV, such as C</dev/VG/LV>."
@@ -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</"
 "dev/VG>."
@@ -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<logvol> with the new name C<newlogvol>."
 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<mbytes>.  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<lv> so that it fills C<pc>% 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<lvs"
 "(8)> 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</dev/"
 "VolGroup00/LogVol00>)."
@@ -13697,19 +14135,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4002
+#: ../src/guestfs-actions.pod:4037
 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
 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<lvs"
 "(8)> 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<struct guestfs_lvm_lv_list *>, or NULL if there "
 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> 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<device>."
 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<path>.  C<names> 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<attrname>.  "
@@ -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<guestfs_lstatlist> 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<path>."
 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<mode>."
@@ -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<mode & "
 "~umask & 01777>.  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<guestfs_mkdir>, C<guestfs_umask>"
 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<path>, creating any parent directories as "
 "necessary.  This is like the C<mkdir -p> 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<template> parameter "
 "should be a full pathname for the temporary directory name with the final "
@@ -13925,7 +14363,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4128 ../fish/guestfish-actions.pod:2810
+#: ../src/guestfs-actions.pod:4163 ../fish/guestfish-actions.pod:2840
 msgid ""
 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
 "being suitable for Windows filesystems."
@@ -13933,19 +14371,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4131 ../fish/guestfish-actions.pod:2813
+#: ../src/guestfs-actions.pod:4166 ../fish/guestfish-actions.pod:2843
 msgid "The name of the temporary directory that was created is returned."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4134 ../fish/guestfish-actions.pod:2816
+#: ../src/guestfs-actions.pod:4169 ../fish/guestfish-actions.pod:2846
 msgid "The temporary directory is created with mode 0700 and is owned by root."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4137 ../fish/guestfish-actions.pod:2819
+#: ../src/guestfs-actions.pod:4172 ../fish/guestfish-actions.pod:2849
 msgid ""
 "The caller is responsible for deleting the temporary directory and its "
 "contents after use."
@@ -13953,19 +14391,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4140 ../fish/guestfish-actions.pod:2822
+#: ../src/guestfs-actions.pod:4175 ../fish/guestfish-actions.pod:2852
 msgid "See also: L<mkdtemp(3)>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4147
+#: ../src/guestfs-actions.pod:4182
 msgid "guestfs_mke2fs_J"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4149
+#: ../src/guestfs-actions.pod:4184
 #, no-wrap
 msgid ""
 " int\n"
@@ -13979,7 +14417,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4156 ../fish/guestfish-actions.pod:2828
+#: ../src/guestfs-actions.pod:4191 ../fish/guestfish-actions.pod:2858
 msgid ""
 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
 "C<journal>.  It is equivalent to the command:"
@@ -13987,7 +14425,7 @@ msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4160 ../fish/guestfish-actions.pod:2832
+#: ../src/guestfs-actions.pod:4195 ../fish/guestfish-actions.pod:2862
 #, no-wrap
 msgid ""
 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
@@ -13996,28 +14434,28 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4162
+#: ../src/guestfs-actions.pod:4197
 msgid "See also C<guestfs_mke2journal>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4166 ../src/guestfs-actions.pod:4184
-#: ../src/guestfs-actions.pod:4202 ../src/guestfs-actions.pod:4218
-#: ../src/guestfs-actions.pod:4232 ../src/guestfs-actions.pod:4246
-#: ../src/guestfs-actions.pod:4305 ../src/guestfs-actions.pod:4570
+#: ../src/guestfs-actions.pod:4201 ../src/guestfs-actions.pod:4219
+#: ../src/guestfs-actions.pod:4237 ../src/guestfs-actions.pod:4253
+#: ../src/guestfs-actions.pod:4267 ../src/guestfs-actions.pod:4281
+#: ../src/guestfs-actions.pod:4340 ../src/guestfs-actions.pod:4605
 msgid "(Added in 1.0.68)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4168
+#: ../src/guestfs-actions.pod:4203
 msgid "guestfs_mke2fs_JL"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4170
+#: ../src/guestfs-actions.pod:4205
 #, no-wrap
 msgid ""
 " int\n"
@@ -14031,7 +14469,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4177 ../fish/guestfish-actions.pod:2840
+#: ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:2870
 msgid ""
 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
 "the journal labeled C<label>."
@@ -14039,19 +14477,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4180
+#: ../src/guestfs-actions.pod:4215
 msgid "See also C<guestfs_mke2journal_L>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4186
+#: ../src/guestfs-actions.pod:4221
 msgid "guestfs_mke2fs_JU"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4188
+#: ../src/guestfs-actions.pod:4223
 #, no-wrap
 msgid ""
 " int\n"
@@ -14065,7 +14503,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4195 ../fish/guestfish-actions.pod:2849
+#: ../src/guestfs-actions.pod:4230 ../fish/guestfish-actions.pod:2879
 msgid ""
 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
 "the journal with UUID C<uuid>."
@@ -14073,19 +14511,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4198
+#: ../src/guestfs-actions.pod:4233
 msgid "See also C<guestfs_mke2journal_U>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4204
+#: ../src/guestfs-actions.pod:4239
 msgid "guestfs_mke2journal"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4206
+#: ../src/guestfs-actions.pod:4241
 #, no-wrap
 msgid ""
 " int\n"
@@ -14097,7 +14535,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4211 ../fish/guestfish-actions.pod:2858
+#: ../src/guestfs-actions.pod:4246 ../fish/guestfish-actions.pod:2888
 msgid ""
 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
 "command:"
@@ -14105,7 +14543,7 @@ msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4214 ../fish/guestfish-actions.pod:2861
+#: ../src/guestfs-actions.pod:4249 ../fish/guestfish-actions.pod:2891
 #, no-wrap
 msgid ""
 " mke2fs -O journal_dev -b blocksize device\n"
@@ -14114,13 +14552,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4220
+#: ../src/guestfs-actions.pod:4255
 msgid "guestfs_mke2journal_L"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4222
+#: ../src/guestfs-actions.pod:4257
 #, no-wrap
 msgid ""
 " int\n"
@@ -14133,19 +14571,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4228 ../fish/guestfish-actions.pod:2867
+#: ../src/guestfs-actions.pod:4263 ../fish/guestfish-actions.pod:2897
 msgid "This creates an ext2 external journal on C<device> with label C<label>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4234
+#: ../src/guestfs-actions.pod:4269
 msgid "guestfs_mke2journal_U"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4236
+#: ../src/guestfs-actions.pod:4271
 #, no-wrap
 msgid ""
 " int\n"
@@ -14158,19 +14596,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4242 ../fish/guestfish-actions.pod:2873
+#: ../src/guestfs-actions.pod:4277 ../fish/guestfish-actions.pod:2903
 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4248
+#: ../src/guestfs-actions.pod:4283
 msgid "guestfs_mkfifo"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4250
+#: ../src/guestfs-actions.pod:4285
 #, no-wrap
 msgid ""
 " int\n"
@@ -14182,7 +14620,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4255
+#: ../src/guestfs-actions.pod:4290
 msgid ""
 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
 "is just a convenient wrapper around C<guestfs_mknod>."
@@ -14190,13 +14628,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4265
+#: ../src/guestfs-actions.pod:4300
 msgid "guestfs_mkfs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4267
+#: ../src/guestfs-actions.pod:4302
 #, no-wrap
 msgid ""
 " int\n"
@@ -14208,7 +14646,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4272 ../fish/guestfish-actions.pod:2889
+#: ../src/guestfs-actions.pod:4307 ../fish/guestfish-actions.pod:2919
 msgid ""
 "This creates a filesystem on C<device> (usually a partition or LVM logical "
 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
@@ -14216,13 +14654,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4280
+#: ../src/guestfs-actions.pod:4315
 msgid "guestfs_mkfs_b"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4282
+#: ../src/guestfs-actions.pod:4317
 #, no-wrap
 msgid ""
 " int\n"
@@ -14235,7 +14673,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4288
+#: ../src/guestfs-actions.pod:4323
 msgid ""
 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
 "block size of the resulting filesystem.  Supported block sizes depend on the "
@@ -14244,8 +14682,8 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4293 ../src/guestfs-actions.pod:4336
-#: ../fish/guestfish-actions.pod:2902 ../fish/guestfish-actions.pod:2929
+#: ../src/guestfs-actions.pod:4328 ../src/guestfs-actions.pod:4371
+#: ../fish/guestfish-actions.pod:2932 ../fish/guestfish-actions.pod:2959
 msgid ""
 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
 "cluster size."
@@ -14253,20 +14691,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4298 ../fish/guestfish-actions.pod:2905
+#: ../src/guestfs-actions.pod:4333 ../fish/guestfish-actions.pod:2935
 msgid ""
 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4307
+#: ../src/guestfs-actions.pod:4342
 msgid "guestfs_mkfs_opts"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4309
+#: ../src/guestfs-actions.pod:4344
 #, no-wrap
 msgid ""
 " int\n"
@@ -14278,7 +14716,7 @@ msgid ""
 msgstr ""
 
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4320
+#: ../src/guestfs-actions.pod:4355
 #, no-wrap
 msgid ""
 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
@@ -14288,7 +14726,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4323 ../fish/guestfish-actions.pod:2916
+#: ../src/guestfs-actions.pod:4358 ../fish/guestfish-actions.pod:2946
 msgid ""
 "This function creates a filesystem on C<device>.  The filesystem type is "
 "C<fstype>, for example C<ext3>."
@@ -14296,13 +14734,13 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4330 ../fish/guestfish-actions.pod:2923
+#: ../src/guestfs-actions.pod:4365 ../fish/guestfish-actions.pod:2953
 msgid "C<blocksize>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4332 ../fish/guestfish-actions.pod:2925
+#: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2955
 msgid ""
 "The filesystem block size.  Supported block sizes depend on the filesystem "
 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
@@ -14310,48 +14748,48 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:4339 ../fish/guestfish-actions.pod:2932
+#: ../src/guestfs-actions.pod:4374 ../fish/guestfish-actions.pod:2962
 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs-actions.pod:4341 ../fish/guestfish-actions.pod:2934
+#: ../src/guestfs-actions.pod:4376 ../fish/guestfish-actions.pod:2964
 msgid "C<features>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:4343 ../fish/guestfish-actions.pod:2936
+#: ../src/guestfs-actions.pod:4378 ../fish/guestfish-actions.pod:2966
 msgid "This passes the C<-O> parameter to the external mkfs program."
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:4345 ../fish/guestfish-actions.pod:2938
+#: ../src/guestfs-actions.pod:4380 ../fish/guestfish-actions.pod:2968
 msgid ""
 "For certain filesystem types, this allows extra filesystem features to be "
 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:4349 ../fish/guestfish-actions.pod:2942
+#: ../src/guestfs-actions.pod:4384 ../fish/guestfish-actions.pod:2972
 msgid ""
 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
 "type."
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:4356
+#: ../src/guestfs-actions.pod:4391
 msgid "(Added in 1.7.19)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4358
+#: ../src/guestfs-actions.pod:4393
 msgid "guestfs_mkfs_opts_va"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4360
+#: ../src/guestfs-actions.pod:4395
 #, no-wrap
 msgid ""
 " int\n"
@@ -14364,19 +14802,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4366
+#: ../src/guestfs-actions.pod:4401
 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4370
+#: ../src/guestfs-actions.pod:4405
 msgid "guestfs_mkfs_opts_argv"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4372
+#: ../src/guestfs-actions.pod:4407
 #, no-wrap
 msgid ""
 " int\n"
@@ -14389,19 +14827,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4378
+#: ../src/guestfs-actions.pod:4413
 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4382
+#: ../src/guestfs-actions.pod:4417
 msgid "guestfs_mkmountpoint"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4384
+#: ../src/guestfs-actions.pod:4419
 #, no-wrap
 msgid ""
 " int\n"
@@ -14412,7 +14850,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4388
+#: ../src/guestfs-actions.pod:4423
 msgid ""
 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
 "that can be used to create extra mountpoints before mounting the first "
@@ -14421,7 +14859,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2957
+#: ../src/guestfs-actions.pod:4427 ../fish/guestfish-actions.pod:2987
 msgid ""
 "These calls are I<only> necessary in some very limited circumstances, mainly "
 "the case where you want to mount a mix of unrelated and/or read-only "
@@ -14430,7 +14868,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4396 ../fish/guestfish-actions.pod:2961
+#: ../src/guestfs-actions.pod:4431 ../fish/guestfish-actions.pod:2991
 msgid ""
 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
@@ -14439,7 +14877,7 @@ msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4401 ../fish/guestfish-actions.pod:2966
+#: ../src/guestfs-actions.pod:4436 ../fish/guestfish-actions.pod:2996
 #, no-wrap
 msgid ""
 " add-ro Fedora-11-i686-Live.iso\n"
@@ -14455,13 +14893,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4410 ../fish/guestfish-actions.pod:2975
+#: ../src/guestfs-actions.pod:4445 ../fish/guestfish-actions.pod:3005
 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4412
+#: ../src/guestfs-actions.pod:4447
 msgid ""
 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
 "may get unexpected errors if you try to mix these calls.  It is safest to "
@@ -14470,7 +14908,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4416
+#: ../src/guestfs-actions.pod:4451
 msgid ""
 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
 "first, so for this to work for manual mountpoints, you must ensure that the "
@@ -14480,13 +14918,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4421 ../fish/guestfish-actions.pod:2986
+#: ../src/guestfs-actions.pod:4456 ../fish/guestfish-actions.pod:3016
 msgid ""
 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:4423
+#: ../src/guestfs-actions.pod:4458
 msgid ""
 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
@@ -14495,20 +14933,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4429 ../src/guestfs-actions.pod:4688
-#: ../src/guestfs-actions.pod:5598
+#: ../src/guestfs-actions.pod:4464 ../src/guestfs-actions.pod:4723
+#: ../src/guestfs-actions.pod:5633
 msgid "(Added in 1.0.62)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4431
+#: ../src/guestfs-actions.pod:4466
 msgid "guestfs_mknod"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4433
+#: ../src/guestfs-actions.pod:4468
 #, no-wrap
 msgid ""
 " int\n"
@@ -14522,14 +14960,14 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4440 ../fish/guestfish-actions.pod:2996
+#: ../src/guestfs-actions.pod:4475 ../fish/guestfish-actions.pod:3026
 msgid ""
 "This call creates block or character special devices, or named pipes (FIFOs)."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4443 ../fish/guestfish-actions.pod:2999
+#: ../src/guestfs-actions.pod:4478 ../fish/guestfish-actions.pod:3029
 msgid ""
 "The C<mode> parameter should be the mode, using the standard constants.  "
 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
@@ -14538,7 +14976,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4448
+#: ../src/guestfs-actions.pod:4483
 msgid ""
 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
@@ -14550,13 +14988,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4462
+#: ../src/guestfs-actions.pod:4497
 msgid "guestfs_mknod_b"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4464
+#: ../src/guestfs-actions.pod:4499
 #, no-wrap
 msgid ""
 " int\n"
@@ -14570,7 +15008,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4471
+#: ../src/guestfs-actions.pod:4506
 msgid ""
 "This call creates a block device node called C<path> with mode C<mode> and "
 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
@@ -14579,13 +15017,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4481
+#: ../src/guestfs-actions.pod:4516
 msgid "guestfs_mknod_c"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4483
+#: ../src/guestfs-actions.pod:4518
 #, no-wrap
 msgid ""
 " int\n"
@@ -14599,7 +15037,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4490
+#: ../src/guestfs-actions.pod:4525
 msgid ""
 "This call creates a char device node called C<path> with mode C<mode> and "
 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
@@ -14608,13 +15046,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4500
+#: ../src/guestfs-actions.pod:4535
 msgid "guestfs_mkswap"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4502
+#: ../src/guestfs-actions.pod:4537
 #, no-wrap
 msgid ""
 " int\n"
@@ -14625,19 +15063,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4506 ../fish/guestfish-actions.pod:3038
+#: ../src/guestfs-actions.pod:4541 ../fish/guestfish-actions.pod:3068
 msgid "Create a swap partition on C<device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4512
+#: ../src/guestfs-actions.pod:4547
 msgid "guestfs_mkswap_L"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4514
+#: ../src/guestfs-actions.pod:4549
 #, no-wrap
 msgid ""
 " int\n"
@@ -14649,13 +15087,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4519 ../fish/guestfish-actions.pod:3044
+#: ../src/guestfs-actions.pod:4554 ../fish/guestfish-actions.pod:3074
 msgid "Create a swap partition on C<device> with label C<label>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3046
+#: ../src/guestfs-actions.pod:4556 ../fish/guestfish-actions.pod:3076
 msgid ""
 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
 "sda>), just to a partition.  This appears to be a limitation of the kernel "
@@ -14664,13 +15102,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4529
+#: ../src/guestfs-actions.pod:4564
 msgid "guestfs_mkswap_U"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4531
+#: ../src/guestfs-actions.pod:4566
 #, no-wrap
 msgid ""
 " int\n"
@@ -14682,19 +15120,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4536 ../fish/guestfish-actions.pod:3054
+#: ../src/guestfs-actions.pod:4571 ../fish/guestfish-actions.pod:3084
 msgid "Create a swap partition on C<device> with UUID C<uuid>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4542
+#: ../src/guestfs-actions.pod:4577
 msgid "guestfs_mkswap_file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4544
+#: ../src/guestfs-actions.pod:4579
 #, no-wrap
 msgid ""
 " int\n"
@@ -14705,13 +15143,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4548 ../fish/guestfish-actions.pod:3060
+#: ../src/guestfs-actions.pod:4583 ../fish/guestfish-actions.pod:3090
 msgid "Create a swap file."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4550
+#: ../src/guestfs-actions.pod:4585
 msgid ""
 "This command just writes a swap file signature to an existing file.  To "
 "create the file itself, use something like C<guestfs_fallocate>."
@@ -14719,13 +15157,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4557
+#: ../src/guestfs-actions.pod:4592
 msgid "guestfs_modprobe"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4559
+#: ../src/guestfs-actions.pod:4594
 #, no-wrap
 msgid ""
 " int\n"
@@ -14736,13 +15174,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4563 ../fish/guestfish-actions.pod:3069
+#: ../src/guestfs-actions.pod:4598 ../fish/guestfish-actions.pod:3099
 msgid "This loads a kernel module in the appliance."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4565 ../fish/guestfish-actions.pod:3071
+#: ../src/guestfs-actions.pod:4600 ../fish/guestfish-actions.pod:3101
 msgid ""
 "The kernel module must have been whitelisted when libguestfs was built (see "
 "C<appliance/kmod.whitelist.in> in the source)."
@@ -14750,13 +15188,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4572
+#: ../src/guestfs-actions.pod:4607
 msgid "guestfs_mount"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4574
+#: ../src/guestfs-actions.pod:4609
 #, no-wrap
 msgid ""
 " int\n"
@@ -14768,7 +15206,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4579 ../fish/guestfish-actions.pod:3078
+#: ../src/guestfs-actions.pod:4614 ../fish/guestfish-actions.pod:3108
 msgid ""
 "Mount a guest disk at a position in the filesystem.  Block devices are named "
 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
@@ -14778,7 +15216,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4585 ../fish/guestfish-actions.pod:3084
+#: ../src/guestfs-actions.pod:4620 ../fish/guestfish-actions.pod:3114
 msgid ""
 "The rules are the same as for L<mount(2)>: A filesystem must first be "
 "mounted on C</> before others can be mounted.  Other filesystems can only be "
@@ -14787,7 +15225,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4590 ../fish/guestfish-actions.pod:3089
+#: ../src/guestfs-actions.pod:4625 ../fish/guestfish-actions.pod:3119
 msgid ""
 "The mounted filesystem is writable, if we have sufficient permissions on the "
 "underlying device."
@@ -14795,7 +15233,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4593
+#: ../src/guestfs-actions.pod:4628
 msgid ""
 "B<Important note:> When you use this call, the filesystem options C<sync> "
 "and C<noatime> are set implicitly.  This was originally done because we "
@@ -14808,13 +15246,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4607
+#: ../src/guestfs-actions.pod:4642
 msgid "guestfs_mount_loop"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4609
+#: ../src/guestfs-actions.pod:4644
 #, no-wrap
 msgid ""
 " int\n"
@@ -14826,7 +15264,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4614 ../fish/guestfish-actions.pod:3106
+#: ../src/guestfs-actions.pod:4649 ../fish/guestfish-actions.pod:3136
 msgid ""
 "This command lets you mount C<file> (a filesystem image in a file) on a "
 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
@@ -14835,13 +15273,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4622
+#: ../src/guestfs-actions.pod:4657
 msgid "guestfs_mount_options"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4624
+#: ../src/guestfs-actions.pod:4659
 #, no-wrap
 msgid ""
 " int\n"
@@ -14854,7 +15292,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4630
+#: ../src/guestfs-actions.pod:4665
 msgid ""
 "This is the same as the C<guestfs_mount> command, but it allows you to set "
 "the mount options as for the L<mount(8)> I<-o> flag."
@@ -14862,7 +15300,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4634 ../fish/guestfish-actions.pod:3118
+#: ../src/guestfs-actions.pod:4669 ../fish/guestfish-actions.pod:3148
 msgid ""
 "If the C<options> parameter is an empty string, then no options are passed "
 "(all options default to whatever the filesystem uses)."
@@ -14870,20 +15308,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4640 ../src/guestfs-actions.pod:4654
-#: ../src/guestfs-actions.pod:4671
+#: ../src/guestfs-actions.pod:4675 ../src/guestfs-actions.pod:4689
+#: ../src/guestfs-actions.pod:4706
 msgid "(Added in 1.0.10)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4642
+#: ../src/guestfs-actions.pod:4677
 msgid "guestfs_mount_ro"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4644
+#: ../src/guestfs-actions.pod:4679
 #, no-wrap
 msgid ""
 " int\n"
@@ -14895,7 +15333,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4649
+#: ../src/guestfs-actions.pod:4684
 msgid ""
 "This is the same as the C<guestfs_mount> command, but it mounts the "
 "filesystem with the read-only (I<-o ro>) flag."
@@ -14903,13 +15341,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4656
+#: ../src/guestfs-actions.pod:4691
 msgid "guestfs_mount_vfs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4658
+#: ../src/guestfs-actions.pod:4693
 #, no-wrap
 msgid ""
 " int\n"
@@ -14923,7 +15361,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4665
+#: ../src/guestfs-actions.pod:4700
 msgid ""
 "This is the same as the C<guestfs_mount> command, but it allows you to set "
 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
@@ -14932,13 +15370,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4673
+#: ../src/guestfs-actions.pod:4708
 msgid "guestfs_mountpoints"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4675
+#: ../src/guestfs-actions.pod:4710
 #, no-wrap
 msgid ""
 " char **\n"
@@ -14948,7 +15386,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4678
+#: ../src/guestfs-actions.pod:4713
 msgid ""
 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
 "devices.  This one returns a hash table (map) of device name to directory "
@@ -14957,13 +15395,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4690
+#: ../src/guestfs-actions.pod:4725
 msgid "guestfs_mounts"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4692
+#: ../src/guestfs-actions.pod:4727
 #, no-wrap
 msgid ""
 " char **\n"
@@ -14973,7 +15411,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4695 ../fish/guestfish-actions.pod:3149
+#: ../src/guestfs-actions.pod:4730 ../fish/guestfish-actions.pod:3179
 msgid ""
 "This returns the list of currently mounted filesystems.  It returns the list "
 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
@@ -14981,25 +15419,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4698 ../fish/guestfish-actions.pod:3152
+#: ../src/guestfs-actions.pod:4733 ../fish/guestfish-actions.pod:3182
 msgid "Some internal mounts are not shown."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4700
+#: ../src/guestfs-actions.pod:4735
 msgid "See also: C<guestfs_mountpoints>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4708
+#: ../src/guestfs-actions.pod:4743
 msgid "guestfs_mv"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4710
+#: ../src/guestfs-actions.pod:4745
 #, no-wrap
 msgid ""
 " int\n"
@@ -15011,7 +15449,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3160
+#: ../src/guestfs-actions.pod:4750 ../fish/guestfish-actions.pod:3190
 msgid ""
 "This moves a file from C<src> to C<dest> where C<dest> is either a "
 "destination filename or destination directory."
@@ -15019,13 +15457,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4722
+#: ../src/guestfs-actions.pod:4757
 msgid "guestfs_ntfs_3g_probe"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4724
+#: ../src/guestfs-actions.pod:4759
 #, no-wrap
 msgid ""
 " int\n"
@@ -15037,7 +15475,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4729 ../fish/guestfish-actions.pod:3167
+#: ../src/guestfs-actions.pod:4764 ../fish/guestfish-actions.pod:3197
 msgid ""
 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
@@ -15046,7 +15484,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4733 ../fish/guestfish-actions.pod:3171
+#: ../src/guestfs-actions.pod:4768 ../fish/guestfish-actions.pod:3201
 msgid ""
 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
 "can be mounted read-write.  Set it to false if you want to test if the "
@@ -15055,7 +15493,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4737 ../fish/guestfish-actions.pod:3175
+#: ../src/guestfs-actions.pod:4772 ../fish/guestfish-actions.pod:3205
 msgid ""
 "The return value is an integer which C<0> if the operation would succeed, or "
 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
@@ -15063,19 +15501,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4743
+#: ../src/guestfs-actions.pod:4778
 msgid "(Added in 1.0.43)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4745
+#: ../src/guestfs-actions.pod:4780
 msgid "guestfs_ntfsresize"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4747
+#: ../src/guestfs-actions.pod:4782
 #, no-wrap
 msgid ""
 " int\n"
@@ -15086,7 +15524,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4751 ../fish/guestfish-actions.pod:3183
+#: ../src/guestfs-actions.pod:4786 ../fish/guestfish-actions.pod:3213
 msgid ""
 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
 "size of the underlying device.  See also L<ntfsresize(8)>."
@@ -15094,13 +15532,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4759
+#: ../src/guestfs-actions.pod:4794
 msgid "guestfs_ntfsresize_size"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4761
+#: ../src/guestfs-actions.pod:4796
 #, no-wrap
 msgid ""
 " int\n"
@@ -15112,7 +15550,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4766
+#: ../src/guestfs-actions.pod:4801
 msgid ""
 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
 "to specify the new size (in bytes) explicitly."
@@ -15120,21 +15558,21 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4771 ../src/guestfs-actions.pod:5207
-#: ../src/guestfs-actions.pod:5280 ../src/guestfs-actions.pod:5546
-#: ../src/guestfs-actions.pod:7113
+#: ../src/guestfs-actions.pod:4806 ../src/guestfs-actions.pod:5242
+#: ../src/guestfs-actions.pod:5315 ../src/guestfs-actions.pod:5581
+#: ../src/guestfs-actions.pod:7152
 msgid "(Added in 1.3.14)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4773
+#: ../src/guestfs-actions.pod:4808
 msgid "guestfs_part_add"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4775
+#: ../src/guestfs-actions.pod:4810
 #, no-wrap
 msgid ""
 " int\n"
@@ -15148,7 +15586,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4782
+#: ../src/guestfs-actions.pod:4817
 msgid ""
 "This command adds a partition to C<device>.  If there is no partition table "
 "on the device, call C<guestfs_part_init> first."
@@ -15156,7 +15594,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4785 ../fish/guestfish-actions.pod:3201
+#: ../src/guestfs-actions.pod:4820 ../fish/guestfish-actions.pod:3231
 msgid ""
 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
@@ -15165,7 +15603,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4790 ../fish/guestfish-actions.pod:3206
+#: ../src/guestfs-actions.pod:4825 ../fish/guestfish-actions.pod:3236
 msgid ""
 "C<startsect> and C<endsect> are the start and end of the partition in "
 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
@@ -15174,7 +15612,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4794
+#: ../src/guestfs-actions.pod:4829
 msgid ""
 "Creating a partition which covers the whole disk is not so easy.  Use "
 "C<guestfs_part_disk> to do that."
@@ -15182,22 +15620,22 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4799 ../src/guestfs-actions.pod:4837
-#: ../src/guestfs-actions.pod:4890 ../src/guestfs-actions.pod:4968
-#: ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:5025
-#: ../src/guestfs-actions.pod:5065
+#: ../src/guestfs-actions.pod:4834 ../src/guestfs-actions.pod:4872
+#: ../src/guestfs-actions.pod:4925 ../src/guestfs-actions.pod:5003
+#: ../src/guestfs-actions.pod:5041 ../src/guestfs-actions.pod:5060
+#: ../src/guestfs-actions.pod:5100
 msgid "(Added in 1.0.78)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4801
+#: ../src/guestfs-actions.pod:4836
 msgid "guestfs_part_del"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4803
+#: ../src/guestfs-actions.pod:4838
 #, no-wrap
 msgid ""
 " int\n"
@@ -15209,13 +15647,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4808 ../fish/guestfish-actions.pod:3217
+#: ../src/guestfs-actions.pod:4843 ../fish/guestfish-actions.pod:3247
 msgid "This command deletes the partition numbered C<partnum> on C<device>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4810 ../fish/guestfish-actions.pod:3219
+#: ../src/guestfs-actions.pod:4845 ../fish/guestfish-actions.pod:3249
 msgid ""
 "Note that in the case of MBR partitioning, deleting an extended partition "
 "also deletes any logical partitions it contains."
@@ -15223,13 +15661,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4818
+#: ../src/guestfs-actions.pod:4853
 msgid "guestfs_part_disk"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4820
+#: ../src/guestfs-actions.pod:4855
 #, no-wrap
 msgid ""
 " int\n"
@@ -15241,7 +15679,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4825
+#: ../src/guestfs-actions.pod:4860
 msgid ""
 "This command is simply a combination of C<guestfs_part_init> followed by "
 "C<guestfs_part_add> to create a single primary partition covering the whole "
@@ -15250,7 +15688,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4829
+#: ../src/guestfs-actions.pod:4864
 msgid ""
 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
 "possible values are described in C<guestfs_part_init>."
@@ -15258,13 +15696,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4839
+#: ../src/guestfs-actions.pod:4874
 msgid "guestfs_part_get_bootable"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4841
+#: ../src/guestfs-actions.pod:4876
 #, no-wrap
 msgid ""
 " int\n"
@@ -15276,7 +15714,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4846 ../fish/guestfish-actions.pod:3241
+#: ../src/guestfs-actions.pod:4881 ../fish/guestfish-actions.pod:3271
 msgid ""
 "This command returns true if the partition C<partnum> on C<device> has the "
 "bootable flag set."
@@ -15284,19 +15722,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4849
+#: ../src/guestfs-actions.pod:4884
 msgid "See also C<guestfs_part_set_bootable>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4855
+#: ../src/guestfs-actions.pod:4890
 msgid "guestfs_part_get_mbr_id"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4857
+#: ../src/guestfs-actions.pod:4892
 #, no-wrap
 msgid ""
 " int\n"
@@ -15308,7 +15746,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4862 ../fish/guestfish-actions.pod:3250
+#: ../src/guestfs-actions.pod:4897 ../fish/guestfish-actions.pod:3280
 msgid ""
 "Returns the MBR type byte (also known as the ID byte) from the numbered "
 "partition C<partnum>."
@@ -15316,7 +15754,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4865 ../src/guestfs-actions.pod:5041
+#: ../src/guestfs-actions.pod:4900 ../src/guestfs-actions.pod:5076
 msgid ""
 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
 "undefined results for other partition table types (see "
@@ -15325,13 +15763,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4873
+#: ../src/guestfs-actions.pod:4908
 msgid "guestfs_part_get_parttype"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4875
+#: ../src/guestfs-actions.pod:4910
 #, no-wrap
 msgid ""
 " char *\n"
@@ -15342,7 +15780,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4879 ../fish/guestfish-actions.pod:3261
+#: ../src/guestfs-actions.pod:4914 ../fish/guestfish-actions.pod:3291
 msgid ""
 "This command examines the partition table on C<device> and returns the "
 "partition table type (format) being used."
@@ -15350,7 +15788,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4882
+#: ../src/guestfs-actions.pod:4917
 msgid ""
 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
@@ -15359,13 +15797,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4892
+#: ../src/guestfs-actions.pod:4927
 msgid "guestfs_part_init"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4894
+#: ../src/guestfs-actions.pod:4929
 #, no-wrap
 msgid ""
 " int\n"
@@ -15377,7 +15815,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4899 ../fish/guestfish-actions.pod:3273
+#: ../src/guestfs-actions.pod:4934 ../fish/guestfish-actions.pod:3303
 msgid ""
 "This creates an empty partition table on C<device> of one of the partition "
 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
@@ -15386,7 +15824,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4903
+#: ../src/guestfs-actions.pod:4938
 msgid ""
 "Initially there are no partitions.  Following this, you should call "
 "C<guestfs_part_add> for each partition required."
@@ -15394,25 +15832,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4906 ../fish/guestfish-actions.pod:3280
+#: ../src/guestfs-actions.pod:4941 ../fish/guestfish-actions.pod:3310
 msgid "Possible values for C<parttype> are:"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4910 ../fish/guestfish-actions.pod:3284
+#: ../src/guestfs-actions.pod:4945 ../fish/guestfish-actions.pod:3314
 msgid "B<efi> | B<gpt>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4912 ../fish/guestfish-actions.pod:3286
+#: ../src/guestfs-actions.pod:4947 ../fish/guestfish-actions.pod:3316
 msgid "Intel EFI / GPT partition table."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4914 ../fish/guestfish-actions.pod:3288
+#: ../src/guestfs-actions.pod:4949 ../fish/guestfish-actions.pod:3318
 msgid ""
 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
@@ -15421,13 +15859,13 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4918 ../fish/guestfish-actions.pod:3292
+#: ../src/guestfs-actions.pod:4953 ../fish/guestfish-actions.pod:3322
 msgid "B<mbr> | B<msdos>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4920 ../fish/guestfish-actions.pod:3294
+#: ../src/guestfs-actions.pod:4955 ../fish/guestfish-actions.pod:3324
 msgid ""
 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
 "Windows.  This partition type will B<only> work for device sizes up to 2 "
@@ -15436,116 +15874,116 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4927 ../fish/guestfish-actions.pod:3301
+#: ../src/guestfs-actions.pod:4962 ../fish/guestfish-actions.pod:3331
 msgid ""
 "Other partition table types that may work but are not supported include:"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4932 ../fish/guestfish-actions.pod:3306
+#: ../src/guestfs-actions.pod:4967 ../fish/guestfish-actions.pod:3336
 msgid "B<aix>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4934 ../fish/guestfish-actions.pod:3308
+#: ../src/guestfs-actions.pod:4969 ../fish/guestfish-actions.pod:3338
 msgid "AIX disk labels."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4936 ../fish/guestfish-actions.pod:3310
+#: ../src/guestfs-actions.pod:4971 ../fish/guestfish-actions.pod:3340
 msgid "B<amiga> | B<rdb>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4938 ../fish/guestfish-actions.pod:3312
+#: ../src/guestfs-actions.pod:4973 ../fish/guestfish-actions.pod:3342
 msgid "Amiga \"Rigid Disk Block\" format."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4940 ../fish/guestfish-actions.pod:3314
+#: ../src/guestfs-actions.pod:4975 ../fish/guestfish-actions.pod:3344
 msgid "B<bsd>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4942 ../fish/guestfish-actions.pod:3316
+#: ../src/guestfs-actions.pod:4977 ../fish/guestfish-actions.pod:3346
 msgid "BSD disk labels."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4944 ../fish/guestfish-actions.pod:3318
+#: ../src/guestfs-actions.pod:4979 ../fish/guestfish-actions.pod:3348
 msgid "B<dasd>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4946 ../fish/guestfish-actions.pod:3320
+#: ../src/guestfs-actions.pod:4981 ../fish/guestfish-actions.pod:3350
 msgid "DASD, used on IBM mainframes."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4948 ../fish/guestfish-actions.pod:3322
+#: ../src/guestfs-actions.pod:4983 ../fish/guestfish-actions.pod:3352
 msgid "B<dvh>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4950 ../fish/guestfish-actions.pod:3324
+#: ../src/guestfs-actions.pod:4985 ../fish/guestfish-actions.pod:3354
 msgid "MIPS/SGI volumes."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4952 ../fish/guestfish-actions.pod:3326
+#: ../src/guestfs-actions.pod:4987 ../fish/guestfish-actions.pod:3356
 msgid "B<mac>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4954 ../fish/guestfish-actions.pod:3328
+#: ../src/guestfs-actions.pod:4989 ../fish/guestfish-actions.pod:3358
 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4956 ../fish/guestfish-actions.pod:3330
+#: ../src/guestfs-actions.pod:4991 ../fish/guestfish-actions.pod:3360
 msgid "B<pc98>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4958 ../fish/guestfish-actions.pod:3332
+#: ../src/guestfs-actions.pod:4993 ../fish/guestfish-actions.pod:3362
 msgid "NEC PC-98 format, common in Japan apparently."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4960 ../fish/guestfish-actions.pod:3334
+#: ../src/guestfs-actions.pod:4995 ../fish/guestfish-actions.pod:3364
 msgid "B<sun>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4962 ../fish/guestfish-actions.pod:3336
+#: ../src/guestfs-actions.pod:4997 ../fish/guestfish-actions.pod:3366
 msgid "Sun disk labels."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:4970
+#: ../src/guestfs-actions.pod:5005
 msgid "guestfs_part_list"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:4972
+#: ../src/guestfs-actions.pod:5007
 #, no-wrap
 msgid ""
 " struct guestfs_partition_list *\n"
@@ -15556,7 +15994,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4976 ../fish/guestfish-actions.pod:3344
+#: ../src/guestfs-actions.pod:5011 ../fish/guestfish-actions.pod:3374
 msgid ""
 "This command parses the partition table on C<device> and returns the list of "
 "partitions found."
@@ -15564,31 +16002,31 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4979 ../fish/guestfish-actions.pod:3347
+#: ../src/guestfs-actions.pod:5014 ../fish/guestfish-actions.pod:3377
 msgid "The fields in the returned structure are:"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4983 ../fish/guestfish-actions.pod:3351
+#: ../src/guestfs-actions.pod:5018 ../fish/guestfish-actions.pod:3381
 msgid "B<part_num>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4985 ../fish/guestfish-actions.pod:3353
+#: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3383
 msgid "Partition number, counting from 1."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4987 ../fish/guestfish-actions.pod:3355
+#: ../src/guestfs-actions.pod:5022 ../fish/guestfish-actions.pod:3385
 msgid "B<part_start>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4989
+#: ../src/guestfs-actions.pod:5024
 msgid ""
 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
 "the device's sector size, see C<guestfs_blockdev_getss>."
@@ -15596,31 +16034,31 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4992 ../fish/guestfish-actions.pod:3360
+#: ../src/guestfs-actions.pod:5027 ../fish/guestfish-actions.pod:3390
 msgid "B<part_end>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4994 ../fish/guestfish-actions.pod:3362
+#: ../src/guestfs-actions.pod:5029 ../fish/guestfish-actions.pod:3392
 msgid "End of the partition in bytes."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:4996 ../fish/guestfish-actions.pod:3364
+#: ../src/guestfs-actions.pod:5031 ../fish/guestfish-actions.pod:3394
 msgid "B<part_size>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:4998 ../fish/guestfish-actions.pod:3366
+#: ../src/guestfs-actions.pod:5033 ../fish/guestfish-actions.pod:3396
 msgid "Size of the partition in bytes."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5002
+#: ../src/guestfs-actions.pod:5037
 msgid ""
 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
@@ -15629,13 +16067,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5008
+#: ../src/guestfs-actions.pod:5043
 msgid "guestfs_part_set_bootable"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5010
+#: ../src/guestfs-actions.pod:5045
 #, no-wrap
 msgid ""
 " int\n"
@@ -15648,7 +16086,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5016 ../fish/guestfish-actions.pod:3374
+#: ../src/guestfs-actions.pod:5051 ../fish/guestfish-actions.pod:3404
 msgid ""
 "This sets the bootable flag on partition numbered C<partnum> on device "
 "C<device>.  Note that partitions are numbered from 1."
@@ -15656,7 +16094,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5019 ../fish/guestfish-actions.pod:3377
+#: ../src/guestfs-actions.pod:5054 ../fish/guestfish-actions.pod:3407
 msgid ""
 "The bootable flag is used by some operating systems (notably Windows) to "
 "determine which partition to boot from.  It is by no means universally "
@@ -15665,13 +16103,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5027
+#: ../src/guestfs-actions.pod:5062
 msgid "guestfs_part_set_mbr_id"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5029
+#: ../src/guestfs-actions.pod:5064
 #, no-wrap
 msgid ""
 " int\n"
@@ -15684,7 +16122,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5035 ../fish/guestfish-actions.pod:3385
+#: ../src/guestfs-actions.pod:5070 ../fish/guestfish-actions.pod:3415
 msgid ""
 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
@@ -15694,13 +16132,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5049
+#: ../src/guestfs-actions.pod:5084
 msgid "guestfs_part_set_name"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5051
+#: ../src/guestfs-actions.pod:5086
 #, no-wrap
 msgid ""
 " int\n"
@@ -15713,7 +16151,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5057 ../fish/guestfish-actions.pod:3399
+#: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3429
 msgid ""
 "This sets the partition name on partition numbered C<partnum> on device "
 "C<device>.  Note that partitions are numbered from 1."
@@ -15721,7 +16159,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5060 ../fish/guestfish-actions.pod:3402
+#: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3432
 msgid ""
 "The partition name can only be set on certain types of partition table.  "
 "This works on C<gpt> but not on C<mbr> partitions."
@@ -15729,13 +16167,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5067
+#: ../src/guestfs-actions.pod:5102
 msgid "guestfs_part_to_dev"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5069
+#: ../src/guestfs-actions.pod:5104
 #, no-wrap
 msgid ""
 " char *\n"
@@ -15746,7 +16184,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3409
+#: ../src/guestfs-actions.pod:5108 ../fish/guestfish-actions.pod:3439
 msgid ""
 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
 "partition number, returning the device name (eg. \"/dev/sdb\")."
@@ -15754,7 +16192,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5077
+#: ../src/guestfs-actions.pod:5112
 msgid ""
 "The named partition must exist, for example as a string returned from "
 "C<guestfs_list_partitions>."
@@ -15762,13 +16200,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5085
+#: ../src/guestfs-actions.pod:5120
 msgid "guestfs_ping_daemon"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5087
+#: ../src/guestfs-actions.pod:5122
 #, no-wrap
 msgid ""
 " int\n"
@@ -15778,7 +16216,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5090 ../fish/guestfish-actions.pod:3420
+#: ../src/guestfs-actions.pod:5125 ../fish/guestfish-actions.pod:3450
 msgid ""
 "This is a test probe into the guestfs daemon running inside the qemu "
 "subprocess.  Calling this function checks that the daemon responds to the "
@@ -15788,13 +16226,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5099
+#: ../src/guestfs-actions.pod:5134
 msgid "guestfs_pread"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5101
+#: ../src/guestfs-actions.pod:5136
 #, no-wrap
 msgid ""
 " char *\n"
@@ -15808,7 +16246,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5108 ../fish/guestfish-actions.pod:3429
+#: ../src/guestfs-actions.pod:5143 ../fish/guestfish-actions.pod:3459
 msgid ""
 "This command lets you read part of a file.  It reads C<count> bytes of the "
 "file, starting at C<offset>, from file C<path>."
@@ -15816,8 +16254,8 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5111 ../src/guestfs-actions.pod:5137
-#: ../fish/guestfish-actions.pod:3432 ../fish/guestfish-actions.pod:3447
+#: ../src/guestfs-actions.pod:5146 ../src/guestfs-actions.pod:5172
+#: ../fish/guestfish-actions.pod:3462 ../fish/guestfish-actions.pod:3477
 msgid ""
 "This may read fewer bytes than requested.  For further details see the "
 "L<pread(2)> system call."
@@ -15825,19 +16263,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5114
+#: ../src/guestfs-actions.pod:5149
 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5125
+#: ../src/guestfs-actions.pod:5160
 msgid "guestfs_pread_device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5127
+#: ../src/guestfs-actions.pod:5162
 #, no-wrap
 msgid ""
 " char *\n"
@@ -15851,7 +16289,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5134 ../fish/guestfish-actions.pod:3444
+#: ../src/guestfs-actions.pod:5169 ../fish/guestfish-actions.pod:3474
 msgid ""
 "This command lets you read part of a file.  It reads C<count> bytes of "
 "C<device>, starting at C<offset>."
@@ -15859,25 +16297,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5140
+#: ../src/guestfs-actions.pod:5175
 msgid "See also C<guestfs_pread>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5149
+#: ../src/guestfs-actions.pod:5184
 msgid "(Added in 1.5.21)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5151
+#: ../src/guestfs-actions.pod:5186
 msgid "guestfs_pvcreate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5153
+#: ../src/guestfs-actions.pod:5188
 #, no-wrap
 msgid ""
 " int\n"
@@ -15888,7 +16326,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5157 ../fish/guestfish-actions.pod:3459
+#: ../src/guestfs-actions.pod:5192 ../fish/guestfish-actions.pod:3489
 msgid ""
 "This creates an LVM physical volume on the named C<device>, where C<device> "
 "should usually be a partition name such as C</dev/sda1>."
@@ -15896,13 +16334,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5165
+#: ../src/guestfs-actions.pod:5200
 msgid "guestfs_pvremove"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5167
+#: ../src/guestfs-actions.pod:5202
 #, no-wrap
 msgid ""
 " int\n"
@@ -15913,7 +16351,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5171 ../fish/guestfish-actions.pod:3467
+#: ../src/guestfs-actions.pod:5206 ../fish/guestfish-actions.pod:3497
 msgid ""
 "This wipes a physical volume C<device> so that LVM will no longer recognise "
 "it."
@@ -15921,7 +16359,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5174 ../fish/guestfish-actions.pod:3470
+#: ../src/guestfs-actions.pod:5209 ../fish/guestfish-actions.pod:3500
 msgid ""
 "The implementation uses the C<pvremove> command which refuses to wipe "
 "physical volumes that contain any volume groups, so you have to remove those "
@@ -15930,13 +16368,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5182
+#: ../src/guestfs-actions.pod:5217
 msgid "guestfs_pvresize"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5184
+#: ../src/guestfs-actions.pod:5219
 #, no-wrap
 msgid ""
 " int\n"
@@ -15947,7 +16385,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5188 ../fish/guestfish-actions.pod:3478
+#: ../src/guestfs-actions.pod:5223 ../fish/guestfish-actions.pod:3508
 msgid ""
 "This resizes (expands or shrinks) an existing LVM physical volume to match "
 "the new size of the underlying device."
@@ -15955,13 +16393,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5195
+#: ../src/guestfs-actions.pod:5230
 msgid "guestfs_pvresize_size"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5197
+#: ../src/guestfs-actions.pod:5232
 #, no-wrap
 msgid ""
 " int\n"
@@ -15973,7 +16411,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5202
+#: ../src/guestfs-actions.pod:5237
 msgid ""
 "This command is the same as C<guestfs_pvresize> except that it allows you to "
 "specify the new size (in bytes) explicitly."
@@ -15981,13 +16419,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5209
+#: ../src/guestfs-actions.pod:5244
 msgid "guestfs_pvs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5211
+#: ../src/guestfs-actions.pod:5246
 #, no-wrap
 msgid ""
 " char **\n"
@@ -15997,7 +16435,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5214 ../fish/guestfish-actions.pod:3492
+#: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3522
 msgid ""
 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
 "(8)> command."
@@ -16005,7 +16443,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5217 ../fish/guestfish-actions.pod:3495
+#: ../src/guestfs-actions.pod:5252 ../fish/guestfish-actions.pod:3525
 msgid ""
 "This returns a list of just the device names that contain PVs (eg. C</dev/"
 "sda2>)."
@@ -16013,19 +16451,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5220
+#: ../src/guestfs-actions.pod:5255
 msgid "See also C<guestfs_pvs_full>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5228
+#: ../src/guestfs-actions.pod:5263
 msgid "guestfs_pvs_full"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5230
+#: ../src/guestfs-actions.pod:5265
 #, no-wrap
 msgid ""
 " struct guestfs_lvm_pv_list *\n"
@@ -16035,7 +16473,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5233 ../fish/guestfish-actions.pod:3504
+#: ../src/guestfs-actions.pod:5268 ../fish/guestfish-actions.pod:3534
 msgid ""
 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
 "(8)> command.  The \"full\" version includes all fields."
@@ -16043,7 +16481,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5236
+#: ../src/guestfs-actions.pod:5271
 msgid ""
 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
@@ -16051,13 +16489,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5242
+#: ../src/guestfs-actions.pod:5277
 msgid "guestfs_pvuuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5244
+#: ../src/guestfs-actions.pod:5279
 #, no-wrap
 msgid ""
 " char *\n"
@@ -16068,19 +16506,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5248 ../fish/guestfish-actions.pod:3511
+#: ../src/guestfs-actions.pod:5283 ../fish/guestfish-actions.pod:3541
 msgid "This command returns the UUID of the LVM PV C<device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5255
+#: ../src/guestfs-actions.pod:5290
 msgid "guestfs_pwrite"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5257
+#: ../src/guestfs-actions.pod:5292
 #, no-wrap
 msgid ""
 " int\n"
@@ -16094,7 +16532,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5264 ../fish/guestfish-actions.pod:3517
+#: ../src/guestfs-actions.pod:5299 ../fish/guestfish-actions.pod:3547
 msgid ""
 "This command writes to part of a file.  It writes the data buffer C<content> "
 "to the file C<path> starting at offset C<offset>."
@@ -16102,7 +16540,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5267 ../fish/guestfish-actions.pod:3520
+#: ../src/guestfs-actions.pod:5302 ../fish/guestfish-actions.pod:3550
 msgid ""
 "This command implements the L<pwrite(2)> system call, and like that system "
 "call it may not write the full data requested.  The return value is the "
@@ -16113,19 +16551,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5273
+#: ../src/guestfs-actions.pod:5308
 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5282
+#: ../src/guestfs-actions.pod:5317
 msgid "guestfs_pwrite_device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5284
+#: ../src/guestfs-actions.pod:5319
 #, no-wrap
 msgid ""
 " int\n"
@@ -16139,7 +16577,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5291 ../fish/guestfish-actions.pod:3535
+#: ../src/guestfs-actions.pod:5326 ../fish/guestfish-actions.pod:3565
 msgid ""
 "This command writes to part of a device.  It writes the data buffer "
 "C<content> to C<device> starting at offset C<offset>."
@@ -16147,7 +16585,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5294 ../fish/guestfish-actions.pod:3538
+#: ../src/guestfs-actions.pod:5329 ../fish/guestfish-actions.pod:3568
 msgid ""
 "This command implements the L<pwrite(2)> system call, and like that system "
 "call it may not write the full data requested (although short writes to disk "
@@ -16156,25 +16594,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5299
+#: ../src/guestfs-actions.pod:5334
 msgid "See also C<guestfs_pwrite>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5306
+#: ../src/guestfs-actions.pod:5341
 msgid "(Added in 1.5.20)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5308
+#: ../src/guestfs-actions.pod:5343
 msgid "guestfs_read_file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5310
+#: ../src/guestfs-actions.pod:5345
 #, no-wrap
 msgid ""
 " char *\n"
@@ -16186,13 +16624,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5315 ../fish/guestfish-actions.pod:3552
+#: ../src/guestfs-actions.pod:5350 ../fish/guestfish-actions.pod:3582
 msgid "This calls returns the contents of the file C<path> as a buffer."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5318
+#: ../src/guestfs-actions.pod:5353
 msgid ""
 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
@@ -16201,19 +16639,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5330
+#: ../src/guestfs-actions.pod:5365
 msgid "(Added in 1.0.63)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5332
+#: ../src/guestfs-actions.pod:5367
 msgid "guestfs_read_lines"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5334
+#: ../src/guestfs-actions.pod:5369
 #, no-wrap
 msgid ""
 " char **\n"
@@ -16224,7 +16662,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5340 ../fish/guestfish-actions.pod:3569
+#: ../src/guestfs-actions.pod:5375 ../fish/guestfish-actions.pod:3599
 msgid ""
 "The file contents are returned as a list of lines.  Trailing C<LF> and "
 "C<CRLF> character sequences are I<not> returned."
@@ -16232,7 +16670,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5343
+#: ../src/guestfs-actions.pod:5378
 msgid ""
 "Note that this function cannot correctly handle binary files (specifically, "
 "files containing C<\\0> character which is treated as end of line).  For "
@@ -16242,13 +16680,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5354
+#: ../src/guestfs-actions.pod:5389
 msgid "guestfs_readdir"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5356
+#: ../src/guestfs-actions.pod:5391
 #, no-wrap
 msgid ""
 " struct guestfs_dirent_list *\n"
@@ -16259,13 +16697,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5360 ../fish/guestfish-actions.pod:3581
+#: ../src/guestfs-actions.pod:5395 ../fish/guestfish-actions.pod:3611
 msgid "This returns the list of directory entries in directory C<dir>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5362 ../fish/guestfish-actions.pod:3583
+#: ../src/guestfs-actions.pod:5397 ../fish/guestfish-actions.pod:3613
 msgid ""
 "All entries in the directory are returned, including C<.> and C<..>.  The "
 "entries are I<not> sorted, but returned in the same order as the underlying "
@@ -16274,7 +16712,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5366 ../fish/guestfish-actions.pod:3587
+#: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3617
 msgid ""
 "Also this call returns basic file type information about each file.  The "
 "C<ftyp> field will contain one of the following characters:"
@@ -16282,116 +16720,116 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5371 ../fish/guestfish-actions.pod:3592
+#: ../src/guestfs-actions.pod:5406 ../fish/guestfish-actions.pod:3622
 msgid "'b'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5373 ../fish/guestfish-actions.pod:3594
+#: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3624
 msgid "Block special"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5375 ../fish/guestfish-actions.pod:3596
+#: ../src/guestfs-actions.pod:5410 ../fish/guestfish-actions.pod:3626
 msgid "'c'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5377 ../fish/guestfish-actions.pod:3598
+#: ../src/guestfs-actions.pod:5412 ../fish/guestfish-actions.pod:3628
 msgid "Char special"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5379 ../fish/guestfish-actions.pod:3600
+#: ../src/guestfs-actions.pod:5414 ../fish/guestfish-actions.pod:3630
 msgid "'d'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5381 ../fish/guestfish-actions.pod:3602
+#: ../src/guestfs-actions.pod:5416 ../fish/guestfish-actions.pod:3632
 msgid "Directory"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5383 ../fish/guestfish-actions.pod:3604
+#: ../src/guestfs-actions.pod:5418 ../fish/guestfish-actions.pod:3634
 msgid "'f'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3606
+#: ../src/guestfs-actions.pod:5420 ../fish/guestfish-actions.pod:3636
 msgid "FIFO (named pipe)"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5387 ../fish/guestfish-actions.pod:3608
+#: ../src/guestfs-actions.pod:5422 ../fish/guestfish-actions.pod:3638
 msgid "'l'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3610
+#: ../src/guestfs-actions.pod:5424 ../fish/guestfish-actions.pod:3640
 msgid "Symbolic link"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5391 ../fish/guestfish-actions.pod:3612
+#: ../src/guestfs-actions.pod:5426 ../fish/guestfish-actions.pod:3642
 msgid "'r'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5393 ../fish/guestfish-actions.pod:3614
+#: ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3644
 msgid "Regular file"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5395 ../fish/guestfish-actions.pod:3616
+#: ../src/guestfs-actions.pod:5430 ../fish/guestfish-actions.pod:3646
 msgid "'s'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5397 ../fish/guestfish-actions.pod:3618
+#: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3648
 msgid "Socket"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5399 ../fish/guestfish-actions.pod:3620
+#: ../src/guestfs-actions.pod:5434 ../fish/guestfish-actions.pod:3650
 msgid "'u'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3622
+#: ../src/guestfs-actions.pod:5436 ../fish/guestfish-actions.pod:3652
 msgid "Unknown file type"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:5403 ../fish/guestfish-actions.pod:3624
+#: ../src/guestfs-actions.pod:5438 ../fish/guestfish-actions.pod:3654
 msgid "'?'"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3626
+#: ../src/guestfs-actions.pod:5440 ../fish/guestfish-actions.pod:3656
 msgid ""
 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5410
+#: ../src/guestfs-actions.pod:5445
 msgid ""
 "This function is primarily intended for use by programs.  To get a simple "
 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
@@ -16400,7 +16838,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5414
+#: ../src/guestfs-actions.pod:5449
 msgid ""
 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
@@ -16408,13 +16846,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5420
+#: ../src/guestfs-actions.pod:5455
 msgid "guestfs_readlink"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5422
+#: ../src/guestfs-actions.pod:5457
 #, no-wrap
 msgid ""
 " char *\n"
@@ -16425,19 +16863,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5426 ../fish/guestfish-actions.pod:3639
+#: ../src/guestfs-actions.pod:5461 ../fish/guestfish-actions.pod:3669
 msgid "This command reads the target of a symbolic link."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5433
+#: ../src/guestfs-actions.pod:5468
 msgid "guestfs_readlinklist"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5435
+#: ../src/guestfs-actions.pod:5470
 #, no-wrap
 msgid ""
 " char **\n"
@@ -16449,7 +16887,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5440 ../fish/guestfish-actions.pod:3645
+#: ../src/guestfs-actions.pod:5475 ../fish/guestfish-actions.pod:3675
 msgid ""
 "This call allows you to do a C<readlink> operation on multiple files, where "
 "all files are in the directory C<path>.  C<names> is the list of files from "
@@ -16458,7 +16896,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5444 ../fish/guestfish-actions.pod:3649
+#: ../src/guestfs-actions.pod:5479 ../fish/guestfish-actions.pod:3679
 msgid ""
 "On return you get a list of strings, with a one-to-one correspondence to the "
 "C<names> list.  Each string is the value of the symbolic link."
@@ -16466,7 +16904,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5448 ../fish/guestfish-actions.pod:3653
+#: ../src/guestfs-actions.pod:5483 ../fish/guestfish-actions.pod:3683
 msgid ""
 "If the C<readlink(2)> operation fails on any name, then the corresponding "
 "result string is the empty string C<\"\">.  However the whole operation is "
@@ -16477,7 +16915,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5455 ../fish/guestfish-actions.pod:3660
+#: ../src/guestfs-actions.pod:5490 ../fish/guestfish-actions.pod:3690
 msgid ""
 "This call is intended for programs that want to efficiently list a directory "
 "contents without making many round-trips.  Very long directory listings "
@@ -16487,13 +16925,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5468
+#: ../src/guestfs-actions.pod:5503
 msgid "guestfs_realpath"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5470
+#: ../src/guestfs-actions.pod:5505
 #, no-wrap
 msgid ""
 " char *\n"
@@ -16504,7 +16942,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5474 ../fish/guestfish-actions.pod:3671
+#: ../src/guestfs-actions.pod:5509 ../fish/guestfish-actions.pod:3701
 msgid ""
 "Return the canonicalized absolute pathname of C<path>.  The returned path "
 "has no C<.>, C<..> or symbolic link path elements."
@@ -16512,13 +16950,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5482
+#: ../src/guestfs-actions.pod:5517
 msgid "guestfs_removexattr"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5484
+#: ../src/guestfs-actions.pod:5519
 #, no-wrap
 msgid ""
 " int\n"
@@ -16530,26 +16968,26 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5489 ../fish/guestfish-actions.pod:3678
+#: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3708
 msgid ""
 "This call removes the extended attribute named C<xattr> of the file C<path>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5492
+#: ../src/guestfs-actions.pod:5527
 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5498
+#: ../src/guestfs-actions.pod:5533
 msgid "guestfs_resize2fs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5500
+#: ../src/guestfs-actions.pod:5535
 #, no-wrap
 msgid ""
 " int\n"
@@ -16560,7 +16998,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5504 ../fish/guestfish-actions.pod:3687
+#: ../src/guestfs-actions.pod:5539 ../fish/guestfish-actions.pod:3717
 msgid ""
 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
 "underlying device."
@@ -16568,7 +17006,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5507
+#: ../src/guestfs-actions.pod:5542
 msgid ""
 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
@@ -16577,12 +17015,12 @@ msgid ""
 msgstr ""
 
 #. type: =head2
-#: ../src/guestfs-actions.pod:5517
+#: ../src/guestfs-actions.pod:5552
 msgid "guestfs_resize2fs_M"
 msgstr ""
 
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5519
+#: ../src/guestfs-actions.pod:5554
 #, no-wrap
 msgid ""
 " int\n"
@@ -16592,7 +17030,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:5523
+#: ../src/guestfs-actions.pod:5558
 msgid ""
 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
 "resized to its minimum size.  This works like the C<-M> option to the "
@@ -16600,7 +17038,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:5527
+#: ../src/guestfs-actions.pod:5562
 msgid ""
 "To get the resulting size of the filesystem you should call "
 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
@@ -16610,13 +17048,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5534
+#: ../src/guestfs-actions.pod:5569
 msgid "guestfs_resize2fs_size"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5536
+#: ../src/guestfs-actions.pod:5571
 #, no-wrap
 msgid ""
 " int\n"
@@ -16628,7 +17066,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5541
+#: ../src/guestfs-actions.pod:5576
 msgid ""
 "This command is the same as C<guestfs_resize2fs> except that it allows you "
 "to specify the new size (in bytes) explicitly."
@@ -16636,13 +17074,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5548
+#: ../src/guestfs-actions.pod:5583
 msgid "guestfs_rm"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5550
+#: ../src/guestfs-actions.pod:5585
 #, no-wrap
 msgid ""
 " int\n"
@@ -16653,19 +17091,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5554 ../fish/guestfish-actions.pod:3720
+#: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3750
 msgid "Remove the single file C<path>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5560
+#: ../src/guestfs-actions.pod:5595
 msgid "guestfs_rm_rf"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5562
+#: ../src/guestfs-actions.pod:5597
 #, no-wrap
 msgid ""
 " int\n"
@@ -16676,7 +17114,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5566 ../fish/guestfish-actions.pod:3726
+#: ../src/guestfs-actions.pod:5601 ../fish/guestfish-actions.pod:3756
 msgid ""
 "Remove the file or directory C<path>, recursively removing the contents if "
 "its a directory.  This is like the C<rm -rf> shell command."
@@ -16684,13 +17122,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5574
+#: ../src/guestfs-actions.pod:5609
 msgid "guestfs_rmdir"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5576
+#: ../src/guestfs-actions.pod:5611
 #, no-wrap
 msgid ""
 " int\n"
@@ -16701,19 +17139,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5580 ../fish/guestfish-actions.pod:3734
+#: ../src/guestfs-actions.pod:5615 ../fish/guestfish-actions.pod:3764
 msgid "Remove the single directory C<path>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5586
+#: ../src/guestfs-actions.pod:5621
 msgid "guestfs_rmmountpoint"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5588
+#: ../src/guestfs-actions.pod:5623
 #, no-wrap
 msgid ""
 " int\n"
@@ -16724,7 +17162,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5592
+#: ../src/guestfs-actions.pod:5627
 msgid ""
 "This calls removes a mountpoint that was previously created with "
 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
@@ -16732,13 +17170,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5600
+#: ../src/guestfs-actions.pod:5635
 msgid "guestfs_scrub_device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5602
+#: ../src/guestfs-actions.pod:5637
 #, no-wrap
 msgid ""
 " int\n"
@@ -16749,7 +17187,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5606 ../fish/guestfish-actions.pod:3748
+#: ../src/guestfs-actions.pod:5641 ../fish/guestfish-actions.pod:3778
 msgid ""
 "This command writes patterns over C<device> to make data retrieval more "
 "difficult."
@@ -16757,9 +17195,9 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5609 ../src/guestfs-actions.pod:5630
-#: ../src/guestfs-actions.pod:5649 ../fish/guestfish-actions.pod:3751
-#: ../fish/guestfish-actions.pod:3766 ../fish/guestfish-actions.pod:3779
+#: ../src/guestfs-actions.pod:5644 ../src/guestfs-actions.pod:5665
+#: ../src/guestfs-actions.pod:5684 ../fish/guestfish-actions.pod:3781
+#: ../fish/guestfish-actions.pod:3796 ../fish/guestfish-actions.pod:3809
 msgid ""
 "It is an interface to the L<scrub(1)> program.  See that manual page for "
 "more details."
@@ -16767,20 +17205,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5617 ../src/guestfs-actions.pod:5635
-#: ../src/guestfs-actions.pod:5654
+#: ../src/guestfs-actions.pod:5652 ../src/guestfs-actions.pod:5670
+#: ../src/guestfs-actions.pod:5689
 msgid "(Added in 1.0.52)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5619
+#: ../src/guestfs-actions.pod:5654
 msgid "guestfs_scrub_file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5621
+#: ../src/guestfs-actions.pod:5656
 #, no-wrap
 msgid ""
 " int\n"
@@ -16791,7 +17229,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5625 ../fish/guestfish-actions.pod:3761
+#: ../src/guestfs-actions.pod:5660 ../fish/guestfish-actions.pod:3791
 msgid ""
 "This command writes patterns over a file to make data retrieval more "
 "difficult."
@@ -16799,19 +17237,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5628 ../fish/guestfish-actions.pod:3764
+#: ../src/guestfs-actions.pod:5663 ../fish/guestfish-actions.pod:3794
 msgid "The file is I<removed> after scrubbing."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5637
+#: ../src/guestfs-actions.pod:5672
 msgid "guestfs_scrub_freespace"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5639
+#: ../src/guestfs-actions.pod:5674
 #, no-wrap
 msgid ""
 " int\n"
@@ -16822,7 +17260,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5643
+#: ../src/guestfs-actions.pod:5678
 msgid ""
 "This command creates the directory C<dir> and then fills it with files until "
 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
@@ -16832,13 +17270,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5656
+#: ../src/guestfs-actions.pod:5691
 msgid "guestfs_set_append"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5658
+#: ../src/guestfs-actions.pod:5693
 #, no-wrap
 msgid ""
 " int\n"
@@ -16849,7 +17287,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5662 ../fish/guestfish-actions.pod:3788
+#: ../src/guestfs-actions.pod:5697 ../fish/guestfish-actions.pod:3818
 msgid ""
 "This function is used to add additional options to the guest kernel command "
 "line."
@@ -16857,7 +17295,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5665 ../fish/guestfish-actions.pod:3791
+#: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3821
 msgid ""
 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
 "environment variable."
@@ -16865,19 +17303,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5668 ../fish/guestfish-actions.pod:3794
+#: ../src/guestfs-actions.pod:5703 ../fish/guestfish-actions.pod:3824
 msgid ""
 "Setting C<append> to C<NULL> means I<no> additional options are passed "
 "(libguestfs always adds a few of its own)."
 msgstr ""
 
 #. type: =head2
-#: ../src/guestfs-actions.pod:5675
+#: ../src/guestfs-actions.pod:5710
 msgid "guestfs_set_attach_method"
 msgstr ""
 
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5677
+#: ../src/guestfs-actions.pod:5712
 #, no-wrap
 msgid ""
 " int\n"
@@ -16887,31 +17325,31 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:5681 ../fish/guestfish-actions.pod:3803
+#: ../src/guestfs-actions.pod:5716 ../fish/guestfish-actions.pod:3833
 msgid ""
 "Set the method that libguestfs uses to connect to the back end guestfsd "
 "daemon.  Possible methods are:"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:5688 ../fish/guestfish-actions.pod:3810
+#: ../src/guestfs-actions.pod:5723 ../fish/guestfish-actions.pod:3840
 msgid ""
 "Launch an appliance and connect to it.  This is the ordinary method and the "
 "default."
 msgstr ""
 
 #. type: =item
-#: ../src/guestfs-actions.pod:5691 ../fish/guestfish-actions.pod:3813
+#: ../src/guestfs-actions.pod:5726 ../fish/guestfish-actions.pod:3843
 msgid "C<unix:I<path>>"
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:5693 ../fish/guestfish-actions.pod:3815
+#: ../src/guestfs-actions.pod:5728 ../fish/guestfish-actions.pod:3845
 msgid "Connect to the Unix domain socket I<path>."
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:5695 ../fish/guestfish-actions.pod:3817
+#: ../src/guestfs-actions.pod:5730 ../fish/guestfish-actions.pod:3847
 msgid ""
 "This method lets you connect to an existing daemon or (using virtio-serial) "
 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
@@ -16920,13 +17358,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5703
+#: ../src/guestfs-actions.pod:5738
 msgid "guestfs_set_autosync"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5705
+#: ../src/guestfs-actions.pod:5740
 #, no-wrap
 msgid ""
 " int\n"
@@ -16936,7 +17374,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../src/guestfs-actions.pod:5709 ../fish/guestfish-actions.pod:3829
+#: ../src/guestfs-actions.pod:5744 ../fish/guestfish-actions.pod:3859
 msgid ""
 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
 "effort attempt to make filesystems consistent and synchronized when the "
@@ -16945,7 +17383,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5714 ../fish/guestfish-actions.pod:3834
+#: ../src/guestfs-actions.pod:5749 ../fish/guestfish-actions.pod:3864
 msgid ""
 "This is enabled by default (since libguestfs 1.5.24, previously it was "
 "disabled by default)."
@@ -16953,13 +17391,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5721
+#: ../src/guestfs-actions.pod:5756
 msgid "guestfs_set_direct"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5723
+#: ../src/guestfs-actions.pod:5758
 #, no-wrap
 msgid ""
 " int\n"
@@ -16970,7 +17408,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5727 ../fish/guestfish-actions.pod:3843
+#: ../src/guestfs-actions.pod:5762 ../fish/guestfish-actions.pod:3873
 msgid ""
 "If the direct appliance mode flag is enabled, then stdin and stdout are "
 "passed directly through to the appliance once it is launched."
@@ -16978,7 +17416,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5731
+#: ../src/guestfs-actions.pod:5766
 msgid ""
 "One consequence of this is that log messages aren't caught by the library "
 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
@@ -16987,25 +17425,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5735 ../fish/guestfish-actions.pod:3851
+#: ../src/guestfs-actions.pod:5770 ../fish/guestfish-actions.pod:3881
 msgid "You probably don't want to use this unless you know what you are doing."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5738 ../fish/guestfish-actions.pod:3854
+#: ../src/guestfs-actions.pod:5773 ../fish/guestfish-actions.pod:3884
 msgid "The default is disabled."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5744
+#: ../src/guestfs-actions.pod:5779
 msgid "guestfs_set_e2label"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5746
+#: ../src/guestfs-actions.pod:5781
 #, no-wrap
 msgid ""
 " int\n"
@@ -17017,7 +17455,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5751 ../fish/guestfish-actions.pod:3860
+#: ../src/guestfs-actions.pod:5786 ../fish/guestfish-actions.pod:3890
 msgid ""
 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
 "C<label>.  Filesystem labels are limited to 16 characters."
@@ -17025,7 +17463,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5755
+#: ../src/guestfs-actions.pod:5790
 msgid ""
 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
 "the existing label on a filesystem."
@@ -17033,13 +17471,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5762
+#: ../src/guestfs-actions.pod:5797
 msgid "guestfs_set_e2uuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5764
+#: ../src/guestfs-actions.pod:5799
 #, no-wrap
 msgid ""
 " int\n"
@@ -17051,7 +17489,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3871
+#: ../src/guestfs-actions.pod:5804 ../fish/guestfish-actions.pod:3901
 msgid ""
 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
@@ -17060,7 +17498,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5774
+#: ../src/guestfs-actions.pod:5809
 msgid ""
 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
 "the existing UUID of a filesystem."
@@ -17068,13 +17506,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5781
+#: ../src/guestfs-actions.pod:5816
 msgid "guestfs_set_memsize"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5783
+#: ../src/guestfs-actions.pod:5818
 #, no-wrap
 msgid ""
 " int\n"
@@ -17085,7 +17523,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5787
+#: ../src/guestfs-actions.pod:5822
 msgid ""
 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
 "This only has any effect if called before C<guestfs_launch>."
@@ -17093,7 +17531,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5791 ../fish/guestfish-actions.pod:3889
+#: ../src/guestfs-actions.pod:5826 ../fish/guestfish-actions.pod:3919
 msgid ""
 "You can also change this by setting the environment variable "
 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
@@ -17101,13 +17539,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5802
+#: ../src/guestfs-actions.pod:5837
 msgid "guestfs_set_network"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5804
+#: ../src/guestfs-actions.pod:5839
 #, no-wrap
 msgid ""
 " int\n"
@@ -17118,7 +17556,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5808 ../fish/guestfish-actions.pod:3902
+#: ../src/guestfs-actions.pod:5843 ../fish/guestfish-actions.pod:3932
 msgid ""
 "If C<network> is true, then the network is enabled in the libguestfs "
 "appliance.  The default is false."
@@ -17126,7 +17564,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3905
+#: ../src/guestfs-actions.pod:5846 ../fish/guestfish-actions.pod:3935
 msgid ""
 "This affects whether commands are able to access the network (see L<guestfs"
 "(3)/RUNNING COMMANDS>)."
@@ -17134,7 +17572,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5814
+#: ../src/guestfs-actions.pod:5849
 msgid ""
 "You must call this before calling C<guestfs_launch>, otherwise it has no "
 "effect."
@@ -17142,13 +17580,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5821
+#: ../src/guestfs-actions.pod:5856
 msgid "guestfs_set_path"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5823
+#: ../src/guestfs-actions.pod:5858
 #, no-wrap
 msgid ""
 " int\n"
@@ -17159,13 +17597,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5827 ../fish/guestfish-actions.pod:3917
+#: ../src/guestfs-actions.pod:5862 ../fish/guestfish-actions.pod:3947
 msgid "Set the path that libguestfs searches for kernel and initrd.img."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3919
+#: ../src/guestfs-actions.pod:5864 ../fish/guestfish-actions.pod:3949
 msgid ""
 "The default is C<$libdir/guestfs> unless overridden by setting "
 "C<LIBGUESTFS_PATH> environment variable."
@@ -17173,19 +17611,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5832 ../fish/guestfish-actions.pod:3922
+#: ../src/guestfs-actions.pod:5867 ../fish/guestfish-actions.pod:3952
 msgid "Setting C<path> to C<NULL> restores the default path."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5838
+#: ../src/guestfs-actions.pod:5873
 msgid "guestfs_set_qemu"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5840
+#: ../src/guestfs-actions.pod:5875
 #, no-wrap
 msgid ""
 " int\n"
@@ -17196,20 +17634,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5844 ../fish/guestfish-actions.pod:3930
+#: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3960
 msgid "Set the qemu binary that we will use."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5846 ../fish/guestfish-actions.pod:3932
+#: ../src/guestfs-actions.pod:5881 ../fish/guestfish-actions.pod:3962
 msgid ""
 "The default is chosen when the library was compiled by the configure script."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5849 ../fish/guestfish-actions.pod:3935
+#: ../src/guestfs-actions.pod:5884 ../fish/guestfish-actions.pod:3965
 msgid ""
 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
 "variable."
@@ -17217,13 +17655,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5852 ../fish/guestfish-actions.pod:3938
+#: ../src/guestfs-actions.pod:5887 ../fish/guestfish-actions.pod:3968
 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5854 ../fish/guestfish-actions.pod:3940
+#: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3970
 msgid ""
 "Note that you should call this function as early as possible after creating "
 "the handle.  This is because some pre-launch operations depend on testing "
@@ -17235,13 +17673,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5866
+#: ../src/guestfs-actions.pod:5901
 msgid "guestfs_set_recovery_proc"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5868
+#: ../src/guestfs-actions.pod:5903
 #, no-wrap
 msgid ""
 " int\n"
@@ -17252,7 +17690,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5872
+#: ../src/guestfs-actions.pod:5907
 msgid ""
 "If this is called with the parameter C<false> then C<guestfs_launch> does "
 "not create a recovery process.  The purpose of the recovery process is to "
@@ -17262,7 +17700,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5877
+#: ../src/guestfs-actions.pod:5912
 msgid ""
 "This only has any effect if called before C<guestfs_launch>, and the default "
 "is true."
@@ -17270,7 +17708,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5880 ../fish/guestfish-actions.pod:3962
+#: ../src/guestfs-actions.pod:5915 ../fish/guestfish-actions.pod:3992
 msgid ""
 "About the only time when you would want to disable this is if the main "
 "process will fork itself into the background (\"daemonize\" itself).  In "
@@ -17280,13 +17718,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5890
+#: ../src/guestfs-actions.pod:5925
 msgid "guestfs_set_selinux"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5892
+#: ../src/guestfs-actions.pod:5927
 #, no-wrap
 msgid ""
 " int\n"
@@ -17297,7 +17735,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5896 ../fish/guestfish-actions.pod:3974
+#: ../src/guestfs-actions.pod:5931 ../fish/guestfish-actions.pod:4004
 msgid ""
 "This sets the selinux flag that is passed to the appliance at boot time.  "
 "The default is C<selinux=0> (disabled)."
@@ -17305,7 +17743,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5899 ../fish/guestfish-actions.pod:3977
+#: ../src/guestfs-actions.pod:5934 ../fish/guestfish-actions.pod:4007
 msgid ""
 "Note that if SELinux is enabled, it is always in Permissive mode "
 "(C<enforcing=0>)."
@@ -17313,13 +17751,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5909
+#: ../src/guestfs-actions.pod:5944
 msgid "guestfs_set_trace"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5911
+#: ../src/guestfs-actions.pod:5946
 #, no-wrap
 msgid ""
 " int\n"
@@ -17328,20 +17766,16 @@ msgid ""
 "\n"
 msgstr ""
 
-# type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5915 ../fish/guestfish-actions.pod:3989
+#: ../src/guestfs-actions.pod:5950 ../fish/guestfish-actions.pod:4019
 msgid ""
-"If the command trace flag is set to 1, then commands are printed on stderr "
-"before they are executed in a format which is very similar to the one used "
-"by guestfish.  In other words, you can run a program with this enabled, and "
-"you will get out a script which you can feed to guestfish to perform the "
-"same set of actions."
+"If the command trace flag is set to 1, then libguestfs calls, parameters and "
+"return values are traced."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5922 ../fish/guestfish-actions.pod:3996
+#: ../src/guestfs-actions.pod:5953 ../fish/guestfish-actions.pod:4022
 msgid ""
 "If you want to trace C API calls into libguestfs (and other libraries) then "
 "possibly a better way is to use the external ltrace(1) command."
@@ -17349,21 +17783,28 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5926 ../fish/guestfish-actions.pod:4000
+#: ../src/guestfs-actions.pod:5957 ../fish/guestfish-actions.pod:4026
 msgid ""
 "Command traces are disabled unless the environment variable "
 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
 msgstr ""
 
+#. type: textblock
+#: ../src/guestfs-actions.pod:5960
+msgid ""
+"Trace messages are normally sent to C<stderr>, unless you register a "
+"callback to send them somewhere else (see C<guestfs_set_event_callback>)."
+msgstr ""
+
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5933
+#: ../src/guestfs-actions.pod:5968
 msgid "guestfs_set_verbose"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5935
+#: ../src/guestfs-actions.pod:5970
 #, no-wrap
 msgid ""
 " int\n"
@@ -17372,29 +17813,35 @@ msgid ""
 "\n"
 msgstr ""
 
-# type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5939 ../fish/guestfish-actions.pod:4009
-msgid "If C<verbose> is true, this turns on verbose messages (to C<stderr>)."
+#: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:4039
+msgid "If C<verbose> is true, this turns on verbose messages."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5941 ../fish/guestfish-actions.pod:4011
+#: ../src/guestfs-actions.pod:5976 ../fish/guestfish-actions.pod:4041
 msgid ""
 "Verbose messages are disabled unless the environment variable "
 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
 msgstr ""
 
+#. type: textblock
+#: ../src/guestfs-actions.pod:5979
+msgid ""
+"Verbose messages are normally sent to C<stderr>, unless you register a "
+"callback to send them somewhere else (see C<guestfs_set_event_callback>)."
+msgstr ""
+
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5948
+#: ../src/guestfs-actions.pod:5987
 msgid "guestfs_setcon"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5950
+#: ../src/guestfs-actions.pod:5989
 #, no-wrap
 msgid ""
 " int\n"
@@ -17405,7 +17852,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5954 ../fish/guestfish-actions.pod:4018
+#: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:4052
 msgid ""
 "This sets the SELinux security context of the daemon to the string "
 "C<context>."
@@ -17413,19 +17860,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5957 ../fish/guestfish-actions.pod:4021
+#: ../src/guestfs-actions.pod:5996 ../fish/guestfish-actions.pod:4055
 msgid "See the documentation about SELINUX in L<guestfs(3)>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5963
+#: ../src/guestfs-actions.pod:6002
 msgid "guestfs_setxattr"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5965
+#: ../src/guestfs-actions.pod:6004
 #, no-wrap
 msgid ""
 " int\n"
@@ -17439,7 +17886,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5972 ../fish/guestfish-actions.pod:4027
+#: ../src/guestfs-actions.pod:6011 ../fish/guestfish-actions.pod:4061
 msgid ""
 "This call sets the extended attribute named C<xattr> of the file C<path> to "
 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
@@ -17447,19 +17894,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5976
+#: ../src/guestfs-actions.pod:6015
 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:5982
+#: ../src/guestfs-actions.pod:6021
 msgid "guestfs_sfdisk"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:5984
+#: ../src/guestfs-actions.pod:6023
 #, no-wrap
 msgid ""
 " int\n"
@@ -17474,7 +17921,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5992 ../fish/guestfish-actions.pod:4037
+#: ../src/guestfs-actions.pod:6031 ../fish/guestfish-actions.pod:4071
 msgid ""
 "This is a direct interface to the L<sfdisk(8)> program for creating "
 "partitions on block devices."
@@ -17482,13 +17929,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4040
+#: ../src/guestfs-actions.pod:6034 ../fish/guestfish-actions.pod:4074
 msgid "C<device> should be a block device, for example C</dev/sda>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:5997 ../fish/guestfish-actions.pod:4042
+#: ../src/guestfs-actions.pod:6036 ../fish/guestfish-actions.pod:4076
 msgid ""
 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
@@ -17500,7 +17947,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6005 ../fish/guestfish-actions.pod:4050
+#: ../src/guestfs-actions.pod:6044 ../fish/guestfish-actions.pod:4084
 msgid ""
 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
 "refer to the L<sfdisk(8)> manpage."
@@ -17508,7 +17955,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6008 ../fish/guestfish-actions.pod:4053
+#: ../src/guestfs-actions.pod:6047 ../fish/guestfish-actions.pod:4087
 msgid ""
 "To create a single partition occupying the whole disk, you would pass "
 "C<lines> as a single element list, when the single element being the string "
@@ -17517,20 +17964,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6012
+#: ../src/guestfs-actions.pod:6051
 msgid ""
 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6022
+#: ../src/guestfs-actions.pod:6061
 msgid "guestfs_sfdiskM"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6024
+#: ../src/guestfs-actions.pod:6063
 #, no-wrap
 msgid ""
 " int\n"
@@ -17542,7 +17989,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6029
+#: ../src/guestfs-actions.pod:6068
 msgid ""
 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
 "partition sizes are specified in megabytes only (rounded to the nearest "
@@ -17552,7 +17999,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6035
+#: ../src/guestfs-actions.pod:6074
 msgid ""
 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
 "C<guestfs_part_disk>"
@@ -17560,13 +18007,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6045
+#: ../src/guestfs-actions.pod:6084
 msgid "guestfs_sfdisk_N"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6047
+#: ../src/guestfs-actions.pod:6086
 #, no-wrap
 msgid ""
 " int\n"
@@ -17582,7 +18029,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4083
+#: ../src/guestfs-actions.pod:6095 ../fish/guestfish-actions.pod:4117
 msgid ""
 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
 "(note: C<n> counts from 1)."
@@ -17590,7 +18037,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6059
+#: ../src/guestfs-actions.pod:6098
 msgid ""
 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
 "for the cyls/heads/sectors parameters."
@@ -17598,19 +18045,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6062
+#: ../src/guestfs-actions.pod:6101
 msgid "See also: C<guestfs_part_add>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6071
+#: ../src/guestfs-actions.pod:6110
 msgid "guestfs_sfdisk_disk_geometry"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6073
+#: ../src/guestfs-actions.pod:6112
 #, no-wrap
 msgid ""
 " char *\n"
@@ -17621,7 +18068,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6077
+#: ../src/guestfs-actions.pod:6116
 msgid ""
 "This displays the disk geometry of C<device> read from the partition table.  "
 "Especially in the case where the underlying block device has been resized, "
@@ -17631,20 +18078,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6082 ../src/guestfs-actions.pod:6098
-#: ../fish/guestfish-actions.pod:4103 ../fish/guestfish-actions.pod:4112
+#: ../src/guestfs-actions.pod:6121 ../src/guestfs-actions.pod:6137
+#: ../fish/guestfish-actions.pod:4137 ../fish/guestfish-actions.pod:4146
 msgid "The result is in human-readable format, and not designed to be parsed."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6090
+#: ../src/guestfs-actions.pod:6129
 msgid "guestfs_sfdisk_kernel_geometry"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6092
+#: ../src/guestfs-actions.pod:6131
 #, no-wrap
 msgid ""
 " char *\n"
@@ -17655,19 +18102,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6096 ../fish/guestfish-actions.pod:4110
+#: ../src/guestfs-actions.pod:6135 ../fish/guestfish-actions.pod:4144
 msgid "This displays the kernel's idea of the geometry of C<device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6106
+#: ../src/guestfs-actions.pod:6145
 msgid "guestfs_sfdisk_l"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6108
+#: ../src/guestfs-actions.pod:6147
 #, no-wrap
 msgid ""
 " char *\n"
@@ -17678,7 +18125,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6112 ../fish/guestfish-actions.pod:4119
+#: ../src/guestfs-actions.pod:6151 ../fish/guestfish-actions.pod:4153
 msgid ""
 "This displays the partition table on C<device>, in the human-readable output "
 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
@@ -17686,19 +18133,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6116
+#: ../src/guestfs-actions.pod:6155
 msgid "See also: C<guestfs_part_list>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6123
+#: ../src/guestfs-actions.pod:6162
 msgid "guestfs_sh"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6125
+#: ../src/guestfs-actions.pod:6164
 #, no-wrap
 msgid ""
 " char *\n"
@@ -17709,7 +18156,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6129 ../fish/guestfish-actions.pod:4129
+#: ../src/guestfs-actions.pod:6168 ../fish/guestfish-actions.pod:4163
 msgid ""
 "This call runs a command from the guest filesystem via the guest's C</bin/"
 "sh>."
@@ -17717,13 +18164,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6132
+#: ../src/guestfs-actions.pod:6171
 msgid "This is like C<guestfs_command>, but passes the command to:"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6134 ../fish/guestfish-actions.pod:4134
+#: ../src/guestfs-actions.pod:6173 ../fish/guestfish-actions.pod:4168
 #, no-wrap
 msgid ""
 " /bin/sh -c \"command\"\n"
@@ -17732,7 +18179,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6136 ../fish/guestfish-actions.pod:4136
+#: ../src/guestfs-actions.pod:6175 ../fish/guestfish-actions.pod:4170
 msgid ""
 "Depending on the guest's shell, this usually results in wildcards being "
 "expanded, shell expressions being interpolated and so on."
@@ -17740,19 +18187,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6140
+#: ../src/guestfs-actions.pod:6179
 msgid "All the provisos about C<guestfs_command> apply to this call."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6147
+#: ../src/guestfs-actions.pod:6186
 msgid "guestfs_sh_lines"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6149
+#: ../src/guestfs-actions.pod:6188
 #, no-wrap
 msgid ""
 " char **\n"
@@ -17763,7 +18210,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6153
+#: ../src/guestfs-actions.pod:6192
 msgid ""
 "This is the same as C<guestfs_sh>, but splits the result into a list of "
 "lines."
@@ -17771,19 +18218,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6156
+#: ../src/guestfs-actions.pod:6195
 msgid "See also: C<guestfs_command_lines>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6164
+#: ../src/guestfs-actions.pod:6203
 msgid "guestfs_sleep"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6166
+#: ../src/guestfs-actions.pod:6205
 #, no-wrap
 msgid ""
 " int\n"
@@ -17794,25 +18241,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6170 ../fish/guestfish-actions.pod:4155
+#: ../src/guestfs-actions.pod:6209 ../fish/guestfish-actions.pod:4189
 msgid "Sleep for C<secs> seconds."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6174
+#: ../src/guestfs-actions.pod:6213
 msgid "(Added in 1.0.41)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6176 ../src/guestfs-structs.pod:109
+#: ../src/guestfs-actions.pod:6215 ../src/guestfs-structs.pod:109
 msgid "guestfs_stat"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6178
+#: ../src/guestfs-actions.pod:6217
 #, no-wrap
 msgid ""
 " struct guestfs_stat *\n"
@@ -17823,19 +18270,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6184 ../fish/guestfish-actions.pod:4163
+#: ../src/guestfs-actions.pod:6223 ../fish/guestfish-actions.pod:4197
 msgid "This is the same as the C<stat(2)> system call."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6192 ../src/guestfs-structs.pod:135
+#: ../src/guestfs-actions.pod:6231 ../src/guestfs-structs.pod:135
 msgid "guestfs_statvfs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6194
+#: ../src/guestfs-actions.pod:6233
 #, no-wrap
 msgid ""
 " struct guestfs_statvfs *\n"
@@ -17846,7 +18293,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6198 ../fish/guestfish-actions.pod:4169
+#: ../src/guestfs-actions.pod:6237 ../fish/guestfish-actions.pod:4203
 msgid ""
 "Returns file system statistics for any mounted file system.  C<path> should "
 "be a file or directory in the mounted file system (typically it is the mount "
@@ -17855,13 +18302,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6202 ../fish/guestfish-actions.pod:4173
+#: ../src/guestfs-actions.pod:6241 ../fish/guestfish-actions.pod:4207
 msgid "This is the same as the C<statvfs(2)> system call."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6204
+#: ../src/guestfs-actions.pod:6243
 msgid ""
 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
@@ -17869,13 +18316,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6210
+#: ../src/guestfs-actions.pod:6249
 msgid "guestfs_strings"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6212
+#: ../src/guestfs-actions.pod:6251
 #, no-wrap
 msgid ""
 " char **\n"
@@ -17886,7 +18333,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6216 ../fish/guestfish-actions.pod:4179
+#: ../src/guestfs-actions.pod:6255 ../fish/guestfish-actions.pod:4213
 msgid ""
 "This runs the L<strings(1)> command on a file and returns the list of "
 "printable strings found."
@@ -17894,13 +18341,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6228
+#: ../src/guestfs-actions.pod:6267
 msgid "guestfs_strings_e"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6230
+#: ../src/guestfs-actions.pod:6269
 #, no-wrap
 msgid ""
 " char **\n"
@@ -17912,7 +18359,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6235
+#: ../src/guestfs-actions.pod:6274
 msgid ""
 "This is like the C<guestfs_strings> command, but allows you to specify the "
 "encoding of strings that are looked for in the source file C<path>."
@@ -17920,19 +18367,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6239 ../fish/guestfish-actions.pod:4193
+#: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4227
 msgid "Allowed encodings are:"
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:6243 ../fish/guestfish-actions.pod:4197
+#: ../src/guestfs-actions.pod:6282 ../fish/guestfish-actions.pod:4231
 msgid "s"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6245
+#: ../src/guestfs-actions.pod:6284
 msgid ""
 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
 "ISO-8859-X (this is what C<guestfs_strings> uses)."
@@ -17940,37 +18387,37 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:6248 ../fish/guestfish-actions.pod:4202
+#: ../src/guestfs-actions.pod:6287 ../fish/guestfish-actions.pod:4236
 msgid "S"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6250 ../fish/guestfish-actions.pod:4204
+#: ../src/guestfs-actions.pod:6289 ../fish/guestfish-actions.pod:4238
 msgid "Single 8-bit-byte characters."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:6252 ../fish/guestfish-actions.pod:4206
+#: ../src/guestfs-actions.pod:6291 ../fish/guestfish-actions.pod:4240
 msgid "b"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6254 ../fish/guestfish-actions.pod:4208
+#: ../src/guestfs-actions.pod:6293 ../fish/guestfish-actions.pod:4242
 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:6257 ../fish/guestfish-actions.pod:4211
+#: ../src/guestfs-actions.pod:6296 ../fish/guestfish-actions.pod:4245
 msgid "l (lower case letter L)"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6259 ../fish/guestfish-actions.pod:4213
+#: ../src/guestfs-actions.pod:6298 ../fish/guestfish-actions.pod:4247
 msgid ""
 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
 "examining binaries in Windows guests."
@@ -17978,43 +18425,43 @@ msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4216
+#: ../src/guestfs-actions.pod:6301 ../fish/guestfish-actions.pod:4250
 msgid "B"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6264 ../fish/guestfish-actions.pod:4218
+#: ../src/guestfs-actions.pod:6303 ../fish/guestfish-actions.pod:4252
 msgid "32-bit big endian such as UCS-4BE."
 msgstr ""
 
 # type: =item
 #. type: =item
-#: ../src/guestfs-actions.pod:6266 ../fish/guestfish-actions.pod:4220
+#: ../src/guestfs-actions.pod:6305 ../fish/guestfish-actions.pod:4254
 msgid "L"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6268 ../fish/guestfish-actions.pod:4222
+#: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4256
 msgid "32-bit little endian such as UCS-4LE."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6272 ../fish/guestfish-actions.pod:4226
+#: ../src/guestfs-actions.pod:6311 ../fish/guestfish-actions.pod:4260
 msgid "The returned strings are transcoded to UTF-8."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6283
+#: ../src/guestfs-actions.pod:6322
 msgid "guestfs_swapoff_device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6285
+#: ../src/guestfs-actions.pod:6324
 #, no-wrap
 msgid ""
 " int\n"
@@ -18025,7 +18472,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6289
+#: ../src/guestfs-actions.pod:6328
 msgid ""
 "This command disables the libguestfs appliance swap device or partition "
 "named C<device>.  See C<guestfs_swapon_device>."
@@ -18033,13 +18480,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6297
+#: ../src/guestfs-actions.pod:6336
 msgid "guestfs_swapoff_file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6299
+#: ../src/guestfs-actions.pod:6338
 #, no-wrap
 msgid ""
 " int\n"
@@ -18050,19 +18497,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6303 ../fish/guestfish-actions.pod:4243
+#: ../src/guestfs-actions.pod:6342 ../fish/guestfish-actions.pod:4277
 msgid "This command disables the libguestfs appliance swap on file."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6309
+#: ../src/guestfs-actions.pod:6348
 msgid "guestfs_swapoff_label"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6311
+#: ../src/guestfs-actions.pod:6350
 #, no-wrap
 msgid ""
 " int\n"
@@ -18073,7 +18520,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6315 ../fish/guestfish-actions.pod:4249
+#: ../src/guestfs-actions.pod:6354 ../fish/guestfish-actions.pod:4283
 msgid ""
 "This command disables the libguestfs appliance swap on labeled swap "
 "partition."
@@ -18081,13 +18528,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6322
+#: ../src/guestfs-actions.pod:6361
 msgid "guestfs_swapoff_uuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6324
+#: ../src/guestfs-actions.pod:6363
 #, no-wrap
 msgid ""
 " int\n"
@@ -18098,7 +18545,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6328 ../fish/guestfish-actions.pod:4256
+#: ../src/guestfs-actions.pod:6367 ../fish/guestfish-actions.pod:4290
 msgid ""
 "This command disables the libguestfs appliance swap partition with the given "
 "UUID."
@@ -18106,13 +18553,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6335
+#: ../src/guestfs-actions.pod:6374
 msgid "guestfs_swapon_device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6337
+#: ../src/guestfs-actions.pod:6376
 #, no-wrap
 msgid ""
 " int\n"
@@ -18123,7 +18570,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6341
+#: ../src/guestfs-actions.pod:6380
 msgid ""
 "This command enables the libguestfs appliance to use the swap device or "
 "partition named C<device>.  The increased memory is made available for all "
@@ -18132,7 +18579,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6346 ../fish/guestfish-actions.pod:4268
+#: ../src/guestfs-actions.pod:6385 ../fish/guestfish-actions.pod:4302
 msgid ""
 "Note that you should not swap to existing guest swap partitions unless you "
 "know what you are doing.  They may contain hibernation information, or other "
@@ -18143,13 +18590,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6357
+#: ../src/guestfs-actions.pod:6396
 msgid "guestfs_swapon_file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6359
+#: ../src/guestfs-actions.pod:6398
 #, no-wrap
 msgid ""
 " int\n"
@@ -18160,7 +18607,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6363
+#: ../src/guestfs-actions.pod:6402
 msgid ""
 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
 "notes."
@@ -18168,13 +18615,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6370
+#: ../src/guestfs-actions.pod:6409
 msgid "guestfs_swapon_label"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6372
+#: ../src/guestfs-actions.pod:6411
 #, no-wrap
 msgid ""
 " int\n"
@@ -18185,7 +18632,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6376
+#: ../src/guestfs-actions.pod:6415
 msgid ""
 "This command enables swap to a labeled swap partition.  See "
 "C<guestfs_swapon_device> for other notes."
@@ -18193,13 +18640,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6383
+#: ../src/guestfs-actions.pod:6422
 msgid "guestfs_swapon_uuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6385
+#: ../src/guestfs-actions.pod:6424
 #, no-wrap
 msgid ""
 " int\n"
@@ -18210,7 +18657,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6389
+#: ../src/guestfs-actions.pod:6428
 msgid ""
 "This command enables swap to a swap partition with the given UUID.  See "
 "C<guestfs_swapon_device> for other notes."
@@ -18218,13 +18665,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6396
+#: ../src/guestfs-actions.pod:6435
 msgid "guestfs_sync"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6398
+#: ../src/guestfs-actions.pod:6437
 #, no-wrap
 msgid ""
 " int\n"
@@ -18234,7 +18681,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6401 ../fish/guestfish-actions.pod:4300
+#: ../src/guestfs-actions.pod:6440 ../fish/guestfish-actions.pod:4334
 msgid ""
 "This syncs the disk, so that any writes are flushed through to the "
 "underlying disk image."
@@ -18242,7 +18689,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6404 ../fish/guestfish-actions.pod:4303
+#: ../src/guestfs-actions.pod:6443 ../fish/guestfish-actions.pod:4337
 msgid ""
 "You should always call this if you have modified a disk image, before "
 "closing the handle."
@@ -18250,13 +18697,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6411
+#: ../src/guestfs-actions.pod:6450
 msgid "guestfs_tail"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6413
+#: ../src/guestfs-actions.pod:6452
 #, no-wrap
 msgid ""
 " char **\n"
@@ -18267,20 +18714,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6417 ../fish/guestfish-actions.pod:4310
+#: ../src/guestfs-actions.pod:6456 ../fish/guestfish-actions.pod:4344
 msgid ""
 "This command returns up to the last 10 lines of a file as a list of strings."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6429
+#: ../src/guestfs-actions.pod:6468
 msgid "guestfs_tail_n"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6431
+#: ../src/guestfs-actions.pod:6470
 #, no-wrap
 msgid ""
 " char **\n"
@@ -18292,7 +18739,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6436 ../fish/guestfish-actions.pod:4320
+#: ../src/guestfs-actions.pod:6475 ../fish/guestfish-actions.pod:4354
 msgid ""
 "If the parameter C<nrlines> is a positive number, this returns the last "
 "C<nrlines> lines of the file C<path>."
@@ -18300,7 +18747,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4323
+#: ../src/guestfs-actions.pod:6478 ../fish/guestfish-actions.pod:4357
 msgid ""
 "If the parameter C<nrlines> is a negative number, this returns lines from "
 "the file C<path>, starting with the C<-nrlines>th line."
@@ -18308,13 +18755,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6453
+#: ../src/guestfs-actions.pod:6492
 msgid "guestfs_tar_in"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6455
+#: ../src/guestfs-actions.pod:6494
 #, no-wrap
 msgid ""
 " int\n"
@@ -18326,7 +18773,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6460 ../fish/guestfish-actions.pod:4335
+#: ../src/guestfs-actions.pod:6499 ../fish/guestfish-actions.pod:4369
 msgid ""
 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
 "tar file) into C<directory>."
@@ -18334,27 +18781,27 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6463
+#: ../src/guestfs-actions.pod:6502
 msgid ""
 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6468 ../src/guestfs-actions.pod:6485
-#: ../src/guestfs-actions.pod:6501 ../src/guestfs-actions.pod:6517
+#: ../src/guestfs-actions.pod:6507 ../src/guestfs-actions.pod:6524
+#: ../src/guestfs-actions.pod:6540 ../src/guestfs-actions.pod:6556
 msgid "(Added in 1.0.3)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6470
+#: ../src/guestfs-actions.pod:6509
 msgid "guestfs_tar_out"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6472
+#: ../src/guestfs-actions.pod:6511
 #, no-wrap
 msgid ""
 " int\n"
@@ -18366,7 +18813,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6477 ../fish/guestfish-actions.pod:4347
+#: ../src/guestfs-actions.pod:6516 ../fish/guestfish-actions.pod:4381
 msgid ""
 "This command packs the contents of C<directory> and downloads it to local "
 "file C<tarfile>."
@@ -18374,7 +18821,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6480
+#: ../src/guestfs-actions.pod:6519
 msgid ""
 "To download a compressed tarball, use C<guestfs_tgz_out> or "
 "C<guestfs_txz_out>."
@@ -18382,13 +18829,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6487
+#: ../src/guestfs-actions.pod:6526
 msgid "guestfs_tgz_in"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6489
+#: ../src/guestfs-actions.pod:6528
 #, no-wrap
 msgid ""
 " int\n"
@@ -18400,7 +18847,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6494 ../fish/guestfish-actions.pod:4359
+#: ../src/guestfs-actions.pod:6533 ../fish/guestfish-actions.pod:4393
 msgid ""
 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
 "tar file) into C<directory>."
@@ -18408,19 +18855,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6497
+#: ../src/guestfs-actions.pod:6536
 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6503
+#: ../src/guestfs-actions.pod:6542
 msgid "guestfs_tgz_out"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6505
+#: ../src/guestfs-actions.pod:6544
 #, no-wrap
 msgid ""
 " int\n"
@@ -18432,7 +18879,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6510 ../fish/guestfish-actions.pod:4370
+#: ../src/guestfs-actions.pod:6549 ../fish/guestfish-actions.pod:4404
 msgid ""
 "This command packs the contents of C<directory> and downloads it to local "
 "file C<tarball>."
@@ -18440,19 +18887,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6513
+#: ../src/guestfs-actions.pod:6552
 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6519
+#: ../src/guestfs-actions.pod:6558
 msgid "guestfs_touch"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6521
+#: ../src/guestfs-actions.pod:6560
 #, no-wrap
 msgid ""
 " int\n"
@@ -18463,7 +18910,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6525 ../fish/guestfish-actions.pod:4381
+#: ../src/guestfs-actions.pod:6564 ../fish/guestfish-actions.pod:4415
 msgid ""
 "Touch acts like the L<touch(1)> command.  It can be used to update the "
 "timestamps on a file, or, if the file does not exist, to create a new zero-"
@@ -18472,7 +18919,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6529 ../fish/guestfish-actions.pod:4385
+#: ../src/guestfs-actions.pod:6568 ../fish/guestfish-actions.pod:4419
 msgid ""
 "This command only works on regular files, and will fail on other file types "
 "such as directories, symbolic links, block special etc."
@@ -18480,13 +18927,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6536
+#: ../src/guestfs-actions.pod:6575
 msgid "guestfs_truncate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6538
+#: ../src/guestfs-actions.pod:6577
 #, no-wrap
 msgid ""
 " int\n"
@@ -18497,7 +18944,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6542 ../fish/guestfish-actions.pod:4392
+#: ../src/guestfs-actions.pod:6581 ../fish/guestfish-actions.pod:4426
 msgid ""
 "This command truncates C<path> to a zero-length file.  The file must exist "
 "already."
@@ -18505,13 +18952,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6549
+#: ../src/guestfs-actions.pod:6588
 msgid "guestfs_truncate_size"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6551
+#: ../src/guestfs-actions.pod:6590
 #, no-wrap
 msgid ""
 " int\n"
@@ -18523,7 +18970,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6556 ../fish/guestfish-actions.pod:4399
+#: ../src/guestfs-actions.pod:6595 ../fish/guestfish-actions.pod:4433
 msgid ""
 "This command truncates C<path> to size C<size> bytes.  The file must exist "
 "already."
@@ -18531,7 +18978,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6559
+#: ../src/guestfs-actions.pod:6598
 msgid ""
 "If the current file size is less than C<size> then the file is extended to "
 "the required size with zero bytes.  This creates a sparse file (ie. disk "
@@ -18541,13 +18988,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6569
+#: ../src/guestfs-actions.pod:6608
 msgid "guestfs_tune2fs_l"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6571
+#: ../src/guestfs-actions.pod:6610
 #, no-wrap
 msgid ""
 " char **\n"
@@ -18558,7 +19005,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6575 ../fish/guestfish-actions.pod:4412
+#: ../src/guestfs-actions.pod:6614 ../fish/guestfish-actions.pod:4446
 msgid ""
 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
 "C<device>."
@@ -18566,7 +19013,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6578 ../fish/guestfish-actions.pod:4415
+#: ../src/guestfs-actions.pod:6617 ../fish/guestfish-actions.pod:4449
 msgid ""
 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
 "for more details.  The list of fields returned isn't clearly defined, and "
@@ -18576,13 +19023,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6591
+#: ../src/guestfs-actions.pod:6630
 msgid "guestfs_txz_in"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6593
+#: ../src/guestfs-actions.pod:6632
 #, no-wrap
 msgid ""
 " int\n"
@@ -18594,7 +19041,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6598 ../fish/guestfish-actions.pod:4424
+#: ../src/guestfs-actions.pod:6637 ../fish/guestfish-actions.pod:4458
 msgid ""
 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
 "tar file) into C<directory>."
@@ -18602,13 +19049,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6605
+#: ../src/guestfs-actions.pod:6644
 msgid "guestfs_txz_out"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6607
+#: ../src/guestfs-actions.pod:6646
 #, no-wrap
 msgid ""
 " int\n"
@@ -18620,7 +19067,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6612 ../fish/guestfish-actions.pod:4433
+#: ../src/guestfs-actions.pod:6651 ../fish/guestfish-actions.pod:4467
 msgid ""
 "This command packs the contents of C<directory> and downloads it to local "
 "file C<tarball> (as an xz compressed tar archive)."
@@ -18628,13 +19075,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6619
+#: ../src/guestfs-actions.pod:6658
 msgid "guestfs_umask"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6621
+#: ../src/guestfs-actions.pod:6660
 #, no-wrap
 msgid ""
 " int\n"
@@ -18645,7 +19092,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6625 ../fish/guestfish-actions.pod:4442
+#: ../src/guestfs-actions.pod:6664 ../fish/guestfish-actions.pod:4476
 msgid ""
 "This function sets the mask used for creating new files and device nodes to "
 "C<mask & 0777>."
@@ -18653,7 +19100,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6628 ../fish/guestfish-actions.pod:4445
+#: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4479
 msgid ""
 "Typical umask values would be C<022> which creates new files with "
 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
@@ -18662,7 +19109,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6633 ../fish/guestfish-actions.pod:4450
+#: ../src/guestfs-actions.pod:6672 ../fish/guestfish-actions.pod:4484
 msgid ""
 "The default umask is C<022>.  This is important because it means that "
 "directories and device nodes will be created with C<0644> or C<0755> mode "
@@ -18671,7 +19118,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6637
+#: ../src/guestfs-actions.pod:6676
 msgid ""
 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
 "C<guestfs_mkdir>."
@@ -18679,19 +19126,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6640 ../fish/guestfish-actions.pod:4457
+#: ../src/guestfs-actions.pod:6679 ../fish/guestfish-actions.pod:4491
 msgid "This call returns the previous umask."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6646
+#: ../src/guestfs-actions.pod:6685
 msgid "guestfs_umount"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6648
+#: ../src/guestfs-actions.pod:6687
 #, no-wrap
 msgid ""
 " int\n"
@@ -18702,7 +19149,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6652 ../fish/guestfish-actions.pod:4465
+#: ../src/guestfs-actions.pod:6691 ../fish/guestfish-actions.pod:4499
 msgid ""
 "This unmounts the given filesystem.  The filesystem may be specified either "
 "by its mountpoint (path) or the device which contains the filesystem."
@@ -18710,13 +19157,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6660
+#: ../src/guestfs-actions.pod:6699
 msgid "guestfs_umount_all"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6662
+#: ../src/guestfs-actions.pod:6701
 #, no-wrap
 msgid ""
 " int\n"
@@ -18726,25 +19173,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6665 ../fish/guestfish-actions.pod:4475
+#: ../src/guestfs-actions.pod:6704 ../fish/guestfish-actions.pod:4509
 msgid "This unmounts all mounted filesystems."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4477
+#: ../src/guestfs-actions.pod:6706 ../fish/guestfish-actions.pod:4511
 msgid "Some internal mounts are not unmounted by this call."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6673
+#: ../src/guestfs-actions.pod:6712
 msgid "guestfs_upload"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6675
+#: ../src/guestfs-actions.pod:6714
 #, no-wrap
 msgid ""
 " int\n"
@@ -18756,26 +19203,26 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6680 ../src/guestfs-actions.pod:6704
-#: ../fish/guestfish-actions.pod:4483 ../fish/guestfish-actions.pod:4496
+#: ../src/guestfs-actions.pod:6719 ../src/guestfs-actions.pod:6743
+#: ../fish/guestfish-actions.pod:4517 ../fish/guestfish-actions.pod:4530
 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6685
+#: ../src/guestfs-actions.pod:6724
 msgid "See also C<guestfs_download>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6696
+#: ../src/guestfs-actions.pod:6735
 msgid "guestfs_upload_offset"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6698
+#: ../src/guestfs-actions.pod:6737
 #, no-wrap
 msgid ""
 " int\n"
@@ -18788,7 +19235,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6707 ../fish/guestfish-actions.pod:4499
+#: ../src/guestfs-actions.pod:6746 ../fish/guestfish-actions.pod:4533
 msgid ""
 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
 "The intention is to overwrite parts of existing files or devices, although "
@@ -18799,7 +19246,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6714
+#: ../src/guestfs-actions.pod:6753
 msgid ""
 "Note that there is no limit on the amount of data that can be uploaded with "
 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
@@ -18808,19 +19255,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6719
+#: ../src/guestfs-actions.pod:6758
 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6730
+#: ../src/guestfs-actions.pod:6769
 msgid "guestfs_utimens"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6732
+#: ../src/guestfs-actions.pod:6771
 #, no-wrap
 msgid ""
 " int\n"
@@ -18835,13 +19282,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6740 ../fish/guestfish-actions.pod:4519
+#: ../src/guestfs-actions.pod:6779 ../fish/guestfish-actions.pod:4553
 msgid "This command sets the timestamps of a file with nanosecond precision."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6743 ../fish/guestfish-actions.pod:4522
+#: ../src/guestfs-actions.pod:6782 ../fish/guestfish-actions.pod:4556
 msgid ""
 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
 "from the epoch."
@@ -18849,7 +19296,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6746 ../fish/guestfish-actions.pod:4525
+#: ../src/guestfs-actions.pod:6785 ../fish/guestfish-actions.pod:4559
 msgid ""
 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
 "nanoseconds from the epoch."
@@ -18857,7 +19304,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6749 ../fish/guestfish-actions.pod:4528
+#: ../src/guestfs-actions.pod:6788 ../fish/guestfish-actions.pod:4562
 msgid ""
 "If the C<*nsecs> field contains the special value C<-1> then the "
 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
@@ -18866,7 +19313,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6753 ../fish/guestfish-actions.pod:4532
+#: ../src/guestfs-actions.pod:6792 ../fish/guestfish-actions.pod:4566
 msgid ""
 "If the C<*nsecs> field contains the special value C<-2> then the "
 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
@@ -18875,13 +19322,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6761 ../src/guestfs-structs.pod:175
+#: ../src/guestfs-actions.pod:6800 ../src/guestfs-structs.pod:175
 msgid "guestfs_version"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6763
+#: ../src/guestfs-actions.pod:6802
 #, no-wrap
 msgid ""
 " struct guestfs_version *\n"
@@ -18891,14 +19338,14 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6766 ../fish/guestfish-actions.pod:4540
+#: ../src/guestfs-actions.pod:6805 ../fish/guestfish-actions.pod:4574
 msgid ""
 "Return the libguestfs version number that the program is linked against."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6769 ../fish/guestfish-actions.pod:4543
+#: ../src/guestfs-actions.pod:6808 ../fish/guestfish-actions.pod:4577
 msgid ""
 "Note that because of dynamic linking this is not necessarily the version of "
 "libguestfs that you compiled against.  You can compile the program, and then "
@@ -18908,7 +19355,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6774 ../fish/guestfish-actions.pod:4548
+#: ../src/guestfs-actions.pod:6813 ../fish/guestfish-actions.pod:4582
 msgid ""
 "This call was added in version C<1.0.58>.  In previous versions of "
 "libguestfs there was no way to get the version number.  From C code you can "
@@ -18918,7 +19365,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6780 ../fish/guestfish-actions.pod:4554
+#: ../src/guestfs-actions.pod:6819 ../fish/guestfish-actions.pod:4588
 msgid ""
 "The call returns a structure with four elements.  The first three (C<major>, "
 "C<minor> and C<release>) are numbers and correspond to the usual version "
@@ -18928,20 +19375,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6786 ../fish/guestfish-actions.pod:4560
+#: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4594
 msgid ""
 "To construct the original version string: C<$major.$minor.$release$extra>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4563
+#: ../src/guestfs-actions.pod:6828 ../fish/guestfish-actions.pod:4597
 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6791
+#: ../src/guestfs-actions.pod:6830
 msgid ""
 "I<Note:> Don't use this call to test for availability of features.  In "
 "enterprise distributions we backport features from later versions into "
@@ -18951,7 +19398,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6797
+#: ../src/guestfs-actions.pod:6836
 msgid ""
 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
 "error.  I<The caller must call C<guestfs_free_version> after use>."
@@ -18959,19 +19406,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6801
+#: ../src/guestfs-actions.pod:6840
 msgid "(Added in 1.0.58)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6803
+#: ../src/guestfs-actions.pod:6842
 msgid "guestfs_vfs_label"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6805
+#: ../src/guestfs-actions.pod:6844
 #, no-wrap
 msgid ""
 " char *\n"
@@ -18982,37 +19429,37 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6809 ../fish/guestfish-actions.pod:4575
+#: ../src/guestfs-actions.pod:6848 ../fish/guestfish-actions.pod:4609
 msgid "This returns the filesystem label of the filesystem on C<device>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6812 ../fish/guestfish-actions.pod:4578
+#: ../src/guestfs-actions.pod:6851 ../fish/guestfish-actions.pod:4612
 msgid "If the filesystem is unlabeled, this returns the empty string."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6814
+#: ../src/guestfs-actions.pod:6853
 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6819 ../src/guestfs-actions.pod:6856
+#: ../src/guestfs-actions.pod:6858 ../src/guestfs-actions.pod:6895
 msgid "(Added in 1.3.18)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6821
+#: ../src/guestfs-actions.pod:6860
 msgid "guestfs_vfs_type"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6823
+#: ../src/guestfs-actions.pod:6862
 #, no-wrap
 msgid ""
 " char *\n"
@@ -19023,7 +19470,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6827 ../fish/guestfish-actions.pod:4586
+#: ../src/guestfs-actions.pod:6866 ../fish/guestfish-actions.pod:4620
 msgid ""
 "This command gets the filesystem type corresponding to the filesystem on "
 "C<device>."
@@ -19031,7 +19478,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6830 ../fish/guestfish-actions.pod:4589
+#: ../src/guestfs-actions.pod:6869 ../fish/guestfish-actions.pod:4623
 msgid ""
 "For most filesystems, the result is the name of the Linux VFS module which "
 "would be used to mount this filesystem if you mounted it without specifying "
@@ -19040,13 +19487,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6840
+#: ../src/guestfs-actions.pod:6879
 msgid "guestfs_vfs_uuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6842
+#: ../src/guestfs-actions.pod:6881
 #, no-wrap
 msgid ""
 " char *\n"
@@ -19057,31 +19504,31 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6846 ../fish/guestfish-actions.pod:4598
+#: ../src/guestfs-actions.pod:6885 ../fish/guestfish-actions.pod:4632
 msgid "This returns the filesystem UUID of the filesystem on C<device>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6849 ../fish/guestfish-actions.pod:4601
+#: ../src/guestfs-actions.pod:6888 ../fish/guestfish-actions.pod:4635
 msgid "If the filesystem does not have a UUID, this returns the empty string."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6851
+#: ../src/guestfs-actions.pod:6890
 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6858
+#: ../src/guestfs-actions.pod:6897
 msgid "guestfs_vg_activate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6860
+#: ../src/guestfs-actions.pod:6899
 #, no-wrap
 msgid ""
 " int\n"
@@ -19093,7 +19540,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6865 ../fish/guestfish-actions.pod:4609
+#: ../src/guestfs-actions.pod:6904 ../fish/guestfish-actions.pod:4643
 msgid ""
 "This command activates or (if C<activate> is false) deactivates all logical "
 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
@@ -19103,13 +19550,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6871 ../fish/guestfish-actions.pod:4615
+#: ../src/guestfs-actions.pod:6910 ../fish/guestfish-actions.pod:4649
 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6873 ../fish/guestfish-actions.pod:4617
+#: ../src/guestfs-actions.pod:6912 ../fish/guestfish-actions.pod:4651
 msgid ""
 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
 "activated or deactivated."
@@ -19117,13 +19564,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6880
+#: ../src/guestfs-actions.pod:6919
 msgid "guestfs_vg_activate_all"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6882
+#: ../src/guestfs-actions.pod:6921
 #, no-wrap
 msgid ""
 " int\n"
@@ -19134,7 +19581,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6886 ../fish/guestfish-actions.pod:4624
+#: ../src/guestfs-actions.pod:6925 ../fish/guestfish-actions.pod:4658
 msgid ""
 "This command activates or (if C<activate> is false) deactivates all logical "
 "volumes in all volume groups.  If activated, then they are made known to the "
@@ -19144,19 +19591,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6892 ../fish/guestfish-actions.pod:4630
+#: ../src/guestfs-actions.pod:6931 ../fish/guestfish-actions.pod:4664
 msgid "This command is the same as running C<vgchange -a y|n>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6898
+#: ../src/guestfs-actions.pod:6937
 msgid "guestfs_vgcreate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6900
+#: ../src/guestfs-actions.pod:6939
 #, no-wrap
 msgid ""
 " int\n"
@@ -19168,7 +19615,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6905 ../fish/guestfish-actions.pod:4636
+#: ../src/guestfs-actions.pod:6944 ../fish/guestfish-actions.pod:4670
 msgid ""
 "This creates an LVM volume group called C<volgroup> from the non-empty list "
 "of physical volumes C<physvols>."
@@ -19176,13 +19623,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6912
+#: ../src/guestfs-actions.pod:6951
 msgid "guestfs_vglvuuids"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6914
+#: ../src/guestfs-actions.pod:6953
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19193,7 +19640,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6918 ../fish/guestfish-actions.pod:4643
+#: ../src/guestfs-actions.pod:6957 ../fish/guestfish-actions.pod:4677
 msgid ""
 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
 "volumes created in this volume group."
@@ -19201,7 +19648,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6921
+#: ../src/guestfs-actions.pod:6960
 msgid ""
 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
 "associate logical volumes and volume groups."
@@ -19209,19 +19656,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6924
+#: ../src/guestfs-actions.pod:6963
 msgid "See also C<guestfs_vgpvuuids>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6932
+#: ../src/guestfs-actions.pod:6971
 msgid "guestfs_vgpvuuids"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6934
+#: ../src/guestfs-actions.pod:6973
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19232,7 +19679,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6938 ../fish/guestfish-actions.pod:4655
+#: ../src/guestfs-actions.pod:6977 ../fish/guestfish-actions.pod:4689
 msgid ""
 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
 "volumes that this volume group resides on."
@@ -19240,7 +19687,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6941
+#: ../src/guestfs-actions.pod:6980
 msgid ""
 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
 "associate physical volumes and volume groups."
@@ -19248,19 +19695,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6944
+#: ../src/guestfs-actions.pod:6983
 msgid "See also C<guestfs_vglvuuids>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6952
+#: ../src/guestfs-actions.pod:6991
 msgid "guestfs_vgremove"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6954
+#: ../src/guestfs-actions.pod:6993
 #, no-wrap
 msgid ""
 " int\n"
@@ -19271,26 +19718,26 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6958 ../fish/guestfish-actions.pod:4667
+#: ../src/guestfs-actions.pod:6997 ../fish/guestfish-actions.pod:4701
 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6960 ../fish/guestfish-actions.pod:4669
+#: ../src/guestfs-actions.pod:6999 ../fish/guestfish-actions.pod:4703
 msgid ""
 "This also forcibly removes all logical volumes in the volume group (if any)."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6967
+#: ../src/guestfs-actions.pod:7006
 msgid "guestfs_vgrename"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6969
+#: ../src/guestfs-actions.pod:7008
 #, no-wrap
 msgid ""
 " int\n"
@@ -19302,19 +19749,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6974 ../fish/guestfish-actions.pod:4676
+#: ../src/guestfs-actions.pod:7013 ../fish/guestfish-actions.pod:4710
 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6980
+#: ../src/guestfs-actions.pod:7019
 msgid "guestfs_vgs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:6982
+#: ../src/guestfs-actions.pod:7021
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19324,7 +19771,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4682
+#: ../src/guestfs-actions.pod:7024 ../fish/guestfish-actions.pod:4716
 msgid ""
 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
 "> command."
@@ -19332,7 +19779,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6988 ../fish/guestfish-actions.pod:4685
+#: ../src/guestfs-actions.pod:7027 ../fish/guestfish-actions.pod:4719
 msgid ""
 "This returns a list of just the volume group names that were detected (eg. "
 "C<VolGroup00>)."
@@ -19340,19 +19787,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:6991
+#: ../src/guestfs-actions.pod:7030
 msgid "See also C<guestfs_vgs_full>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:6999
+#: ../src/guestfs-actions.pod:7038
 msgid "guestfs_vgs_full"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7001
+#: ../src/guestfs-actions.pod:7040
 #, no-wrap
 msgid ""
 " struct guestfs_lvm_vg_list *\n"
@@ -19362,7 +19809,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7004 ../fish/guestfish-actions.pod:4694
+#: ../src/guestfs-actions.pod:7043 ../fish/guestfish-actions.pod:4728
 msgid ""
 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
 "> command.  The \"full\" version includes all fields."
@@ -19370,7 +19817,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7007
+#: ../src/guestfs-actions.pod:7046
 msgid ""
 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
@@ -19378,13 +19825,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7013
+#: ../src/guestfs-actions.pod:7052
 msgid "guestfs_vgscan"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7015
+#: ../src/guestfs-actions.pod:7054
 #, no-wrap
 msgid ""
 " int\n"
@@ -19394,7 +19841,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7018 ../fish/guestfish-actions.pod:4701
+#: ../src/guestfs-actions.pod:7057 ../fish/guestfish-actions.pod:4735
 msgid ""
 "This rescans all block devices and rebuilds the list of LVM physical "
 "volumes, volume groups and logical volumes."
@@ -19402,13 +19849,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7025
+#: ../src/guestfs-actions.pod:7064
 msgid "guestfs_vguuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7027
+#: ../src/guestfs-actions.pod:7066
 #, no-wrap
 msgid ""
 " char *\n"
@@ -19419,19 +19866,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7031 ../fish/guestfish-actions.pod:4708
+#: ../src/guestfs-actions.pod:7070 ../fish/guestfish-actions.pod:4742
 msgid "This command returns the UUID of the LVM VG named C<vgname>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7038
+#: ../src/guestfs-actions.pod:7077
 msgid "guestfs_wait_ready"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7040
+#: ../src/guestfs-actions.pod:7079
 #, no-wrap
 msgid ""
 " int\n"
@@ -19441,13 +19888,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7043
+#: ../src/guestfs-actions.pod:7082
 msgid "This function is a no op."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7045
+#: ../src/guestfs-actions.pod:7084
 msgid ""
 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
@@ -19456,7 +19903,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7050
+#: ../src/guestfs-actions.pod:7089
 msgid ""
 "If you see any calls to this function in code then you can just remove them, "
 "unless you want to retain compatibility with older versions of the API."
@@ -19464,13 +19911,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7058
+#: ../src/guestfs-actions.pod:7097
 msgid "guestfs_wc_c"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7060
+#: ../src/guestfs-actions.pod:7099
 #, no-wrap
 msgid ""
 " int\n"
@@ -19481,7 +19928,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7064 ../fish/guestfish-actions.pod:4714
+#: ../src/guestfs-actions.pod:7103 ../fish/guestfish-actions.pod:4748
 msgid ""
 "This command counts the characters in a file, using the C<wc -c> external "
 "command."
@@ -19489,13 +19936,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7071
+#: ../src/guestfs-actions.pod:7110
 msgid "guestfs_wc_l"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7073
+#: ../src/guestfs-actions.pod:7112
 #, no-wrap
 msgid ""
 " int\n"
@@ -19506,20 +19953,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7077 ../fish/guestfish-actions.pod:4721
+#: ../src/guestfs-actions.pod:7116 ../fish/guestfish-actions.pod:4755
 msgid ""
 "This command counts the lines in a file, using the C<wc -l> external command."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7084
+#: ../src/guestfs-actions.pod:7123
 msgid "guestfs_wc_w"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7086
+#: ../src/guestfs-actions.pod:7125
 #, no-wrap
 msgid ""
 " int\n"
@@ -19530,20 +19977,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7090 ../fish/guestfish-actions.pod:4728
+#: ../src/guestfs-actions.pod:7129 ../fish/guestfish-actions.pod:4762
 msgid ""
 "This command counts the words in a file, using the C<wc -w> external command."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7097
+#: ../src/guestfs-actions.pod:7136
 msgid "guestfs_write"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7099
+#: ../src/guestfs-actions.pod:7138
 #, no-wrap
 msgid ""
 " int\n"
@@ -19556,7 +20003,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7105 ../fish/guestfish-actions.pod:4735
+#: ../src/guestfs-actions.pod:7144 ../fish/guestfish-actions.pod:4769
 msgid ""
 "This call creates a file called C<path>.  The content of the file is the "
 "string C<content> (which can contain any 8 bit data)."
@@ -19564,13 +20011,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7115
+#: ../src/guestfs-actions.pod:7154
 msgid "guestfs_write_file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7117
+#: ../src/guestfs-actions.pod:7156
 #, no-wrap
 msgid ""
 " int\n"
@@ -19583,7 +20030,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7123 ../fish/guestfish-actions.pod:4745
+#: ../src/guestfs-actions.pod:7162 ../fish/guestfish-actions.pod:4779
 msgid ""
 "This call creates a file called C<path>.  The contents of the file is the "
 "string C<content> (which can contain any 8 bit data), with length C<size>."
@@ -19591,7 +20038,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7127 ../fish/guestfish-actions.pod:4749
+#: ../src/guestfs-actions.pod:7166 ../fish/guestfish-actions.pod:4783
 msgid ""
 "As a special case, if C<size> is C<0> then the length is calculated using "
 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
@@ -19599,7 +20046,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7131 ../fish/guestfish-actions.pod:4753
+#: ../src/guestfs-actions.pod:7170 ../fish/guestfish-actions.pod:4787
 msgid ""
 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
 "I<not> work, even if the length is specified."
@@ -19607,20 +20054,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7139 ../fish/guestfish-actions.pod:4759
+#: ../src/guestfs-actions.pod:7178 ../fish/guestfish-actions.pod:4793
 msgid ""
 "This function is deprecated.  In new code, use the C<write> call instead."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7148
+#: ../src/guestfs-actions.pod:7187
 msgid "guestfs_zegrep"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7150
+#: ../src/guestfs-actions.pod:7189
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19632,20 +20079,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7155 ../fish/guestfish-actions.pod:4770
+#: ../src/guestfs-actions.pod:7194 ../fish/guestfish-actions.pod:4804
 msgid ""
 "This calls the external C<zegrep> program and returns the matching lines."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7167
+#: ../src/guestfs-actions.pod:7206
 msgid "guestfs_zegrepi"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7169
+#: ../src/guestfs-actions.pod:7208
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19657,20 +20104,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7174 ../fish/guestfish-actions.pod:4780
+#: ../src/guestfs-actions.pod:7213 ../fish/guestfish-actions.pod:4814
 msgid ""
 "This calls the external C<zegrep -i> program and returns the matching lines."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7186
+#: ../src/guestfs-actions.pod:7225
 msgid "guestfs_zero"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7188
+#: ../src/guestfs-actions.pod:7227
 #, no-wrap
 msgid ""
 " int\n"
@@ -19681,13 +20128,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7192 ../fish/guestfish-actions.pod:4790
+#: ../src/guestfs-actions.pod:7231 ../fish/guestfish-actions.pod:4824
 msgid "This command writes zeroes over the first few blocks of C<device>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7194 ../fish/guestfish-actions.pod:4792
+#: ../src/guestfs-actions.pod:7233 ../fish/guestfish-actions.pod:4826
 msgid ""
 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
 "securely wipe the device).  It should be sufficient to remove any partition "
@@ -19696,19 +20143,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7198
+#: ../src/guestfs-actions.pod:7237
 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7209
+#: ../src/guestfs-actions.pod:7248
 msgid "guestfs_zero_device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7211
+#: ../src/guestfs-actions.pod:7250
 #, no-wrap
 msgid ""
 " int\n"
@@ -19719,7 +20166,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7215
+#: ../src/guestfs-actions.pod:7254
 msgid ""
 "This command writes zeroes over the entire C<device>.  Compare with "
 "C<guestfs_zero> which just zeroes the first few blocks of a device."
@@ -19727,19 +20174,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7229
+#: ../src/guestfs-actions.pod:7268
 msgid "(Added in 1.3.1)"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7231
+#: ../src/guestfs-actions.pod:7270
 msgid "guestfs_zerofree"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7233
+#: ../src/guestfs-actions.pod:7272
 #, no-wrap
 msgid ""
 " int\n"
@@ -19750,7 +20197,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7237 ../fish/guestfish-actions.pod:4813
+#: ../src/guestfs-actions.pod:7276 ../fish/guestfish-actions.pod:4847
 msgid ""
 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
@@ -19759,13 +20206,13 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7242 ../fish/guestfish-actions.pod:4818
+#: ../src/guestfs-actions.pod:7281 ../fish/guestfish-actions.pod:4852
 msgid "You should B<not> run this program if the filesystem is mounted."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7245 ../fish/guestfish-actions.pod:4821
+#: ../src/guestfs-actions.pod:7284 ../fish/guestfish-actions.pod:4855
 msgid ""
 "It is possible that using this program can damage the filesystem or data on "
 "the filesystem."
@@ -19773,13 +20220,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7252
+#: ../src/guestfs-actions.pod:7291
 msgid "guestfs_zfgrep"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7254
+#: ../src/guestfs-actions.pod:7293
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19791,20 +20238,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7259 ../fish/guestfish-actions.pod:4828
+#: ../src/guestfs-actions.pod:7298 ../fish/guestfish-actions.pod:4862
 msgid ""
 "This calls the external C<zfgrep> program and returns the matching lines."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7271
+#: ../src/guestfs-actions.pod:7310
 msgid "guestfs_zfgrepi"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7273
+#: ../src/guestfs-actions.pod:7312
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19816,20 +20263,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7278 ../fish/guestfish-actions.pod:4838
+#: ../src/guestfs-actions.pod:7317 ../fish/guestfish-actions.pod:4872
 msgid ""
 "This calls the external C<zfgrep -i> program and returns the matching lines."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7290
+#: ../src/guestfs-actions.pod:7329
 msgid "guestfs_zfile"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7292
+#: ../src/guestfs-actions.pod:7331
 #, no-wrap
 msgid ""
 " char *\n"
@@ -19841,20 +20288,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7297 ../fish/guestfish-actions.pod:4848
+#: ../src/guestfs-actions.pod:7336 ../fish/guestfish-actions.pod:4882
 msgid ""
 "This command runs C<file> after first decompressing C<path> using C<method>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7300 ../fish/guestfish-actions.pod:4851
+#: ../src/guestfs-actions.pod:7339 ../fish/guestfish-actions.pod:4885
 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7302
+#: ../src/guestfs-actions.pod:7341
 msgid ""
 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
 "files."
@@ -19862,20 +20309,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7308 ../fish/guestfish-actions.pod:4856
+#: ../src/guestfs-actions.pod:7347 ../fish/guestfish-actions.pod:4890
 msgid ""
 "This function is deprecated.  In new code, use the C<file> call instead."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7317
+#: ../src/guestfs-actions.pod:7356
 msgid "guestfs_zgrep"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7319
+#: ../src/guestfs-actions.pod:7358
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19887,20 +20334,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7324 ../fish/guestfish-actions.pod:4867
+#: ../src/guestfs-actions.pod:7363 ../fish/guestfish-actions.pod:4901
 msgid ""
 "This calls the external C<zgrep> program and returns the matching lines."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../src/guestfs-actions.pod:7336
+#: ../src/guestfs-actions.pod:7375
 msgid "guestfs_zgrepi"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../src/guestfs-actions.pod:7338
+#: ../src/guestfs-actions.pod:7377
 #, no-wrap
 msgid ""
 " char **\n"
@@ -19912,7 +20359,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../src/guestfs-actions.pod:7343 ../fish/guestfish-actions.pod:4877
+#: ../src/guestfs-actions.pod:7382 ../fish/guestfish-actions.pod:4911
 msgid ""
 "This calls the external C<zgrep -i> program and returns the matching lines."
 msgstr ""
@@ -23538,9 +23985,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:1153 ../test-tool/libguestfs-test-tool.pod:124
 #: ../fuse/guestmount.pod:258 ../tools/virt-edit.pl:372
-#: ../tools/virt-win-reg.pl:606 ../tools/virt-resize.pl:1512
+#: ../tools/virt-win-reg.pl:606 ../tools/virt-resize.pl:1518
 #: ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309
-#: ../tools/virt-make-fs.pl:567 ../tools/virt-list-partitions.pl:277
+#: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
 msgid ""
 "This program is free software; you can redistribute it and/or modify it "
 "under the terms of the GNU General Public License as published by the Free "
@@ -23552,9 +23999,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:1158 ../test-tool/libguestfs-test-tool.pod:129
 #: ../fuse/guestmount.pod:263 ../tools/virt-edit.pl:377
-#: ../tools/virt-win-reg.pl:611 ../tools/virt-resize.pl:1517
+#: ../tools/virt-win-reg.pl:611 ../tools/virt-resize.pl:1523
 #: ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314
-#: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:282
+#: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
 msgid ""
 "This program is distributed in the hope that it will be useful, but WITHOUT "
 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
@@ -23566,9 +24013,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:1163 ../test-tool/libguestfs-test-tool.pod:134
 #: ../fuse/guestmount.pod:268 ../tools/virt-edit.pl:382
-#: ../tools/virt-win-reg.pl:616 ../tools/virt-resize.pl:1522
+#: ../tools/virt-win-reg.pl:616 ../tools/virt-resize.pl:1528
 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
-#: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:287
+#: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
 msgid ""
 "You should have received a copy of the GNU General Public License along with "
 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
@@ -23649,7 +24096,7 @@ msgstr ""
 # type: textblock
 #. type: textblock
 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
-#: ../fish/guestfish-actions.pod:2947
+#: ../fish/guestfish-actions.pod:2977
 msgid ""
 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
 msgstr ""
@@ -24164,10 +24611,10 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1228
-#: ../fish/guestfish-actions.pod:4341 ../fish/guestfish-actions.pod:4353
-#: ../fish/guestfish-actions.pod:4364 ../fish/guestfish-actions.pod:4375
-#: ../fish/guestfish-actions.pod:4427 ../fish/guestfish-actions.pod:4436
-#: ../fish/guestfish-actions.pod:4490 ../fish/guestfish-actions.pod:4513
+#: ../fish/guestfish-actions.pod:4375 ../fish/guestfish-actions.pod:4387
+#: ../fish/guestfish-actions.pod:4398 ../fish/guestfish-actions.pod:4409
+#: ../fish/guestfish-actions.pod:4461 ../fish/guestfish-actions.pod:4470
+#: ../fish/guestfish-actions.pod:4524 ../fish/guestfish-actions.pod:4547
 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
 msgstr ""
 
@@ -25529,7 +25976,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:1447 ../fish/guestfish-actions.pod:2353
+#: ../fish/guestfish-actions.pod:1447 ../fish/guestfish-actions.pod:2383
 msgid ""
 "Normally it is better to get all extended attributes from a file in one go "
 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
@@ -25872,10 +26319,10 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:1830 ../fish/guestfish-actions.pod:1845
 #: ../fish/guestfish-actions.pod:1866 ../fish/guestfish-actions.pod:1881
 #: ../fish/guestfish-actions.pod:1908 ../fish/guestfish-actions.pod:1930
-#: ../fish/guestfish-actions.pod:1954 ../fish/guestfish-actions.pod:1984
-#: ../fish/guestfish-actions.pod:2019 ../fish/guestfish-actions.pod:2035
-#: ../fish/guestfish-actions.pod:2048 ../fish/guestfish-actions.pod:2061
-#: ../fish/guestfish-actions.pod:2076
+#: ../fish/guestfish-actions.pod:1954 ../fish/guestfish-actions.pod:1971
+#: ../fish/guestfish-actions.pod:2014 ../fish/guestfish-actions.pod:2049
+#: ../fish/guestfish-actions.pod:2065 ../fish/guestfish-actions.pod:2078
+#: ../fish/guestfish-actions.pod:2091 ../fish/guestfish-actions.pod:2106
 msgid ""
 "This function should only be called with a root device string as returned by "
 "L</inspect-os>."
@@ -26081,15 +26528,35 @@ msgid ""
 "\n"
 msgstr ""
 
-# type: =head2
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1967
+msgid "inspect-get-product-variant"
+msgstr ""
+
+#. type: verbatim
+#: ../fish/guestfish-actions.pod:1969
+#, no-wrap
+msgid ""
+" inspect-get-product-variant root\n"
+"\n"
+msgstr ""
+
+#. type: textblock
+#: ../fish/guestfish-actions.pod:1993
+msgid ""
+"Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
+"get-product-name>, L</inspect-get-major-version>."
+msgstr ""
+
+# type: =head2
+#. type: =head2
+#: ../fish/guestfish-actions.pod:1997
 msgid "inspect-get-roots"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:1969
+#: ../fish/guestfish-actions.pod:1999
 #, no-wrap
 msgid ""
 " inspect-get-roots\n"
@@ -26098,7 +26565,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:1971
+#: ../fish/guestfish-actions.pod:2001
 msgid ""
 "This function is a convenient way to get the list of root devices, as "
 "returned from a previous call to L</inspect-os>, but without redoing the "
@@ -26107,7 +26574,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:1975
+#: ../fish/guestfish-actions.pod:2005
 msgid ""
 "This returns an empty list if either no root devices were found or the "
 "caller has not called L</inspect-os>."
@@ -26115,13 +26582,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:1980
+#: ../fish/guestfish-actions.pod:2010
 msgid "inspect-get-type"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:1982
+#: ../fish/guestfish-actions.pod:2012
 #, no-wrap
 msgid ""
 " inspect-get-type root\n"
@@ -26130,13 +26597,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2015
+#: ../fish/guestfish-actions.pod:2045
 msgid "inspect-get-windows-systemroot"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2017
+#: ../fish/guestfish-actions.pod:2047
 #, no-wrap
 msgid ""
 " inspect-get-windows-systemroot root\n"
@@ -26144,12 +26611,12 @@ msgid ""
 msgstr ""
 
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2031
+#: ../fish/guestfish-actions.pod:2061
 msgid "inspect-is-live"
 msgstr ""
 
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2033
+#: ../fish/guestfish-actions.pod:2063
 #, no-wrap
 msgid ""
 " inspect-is-live root\n"
@@ -26157,19 +26624,19 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2038
+#: ../fish/guestfish-actions.pod:2068
 msgid ""
 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
 "then this returns true if a live image was detected on the disk."
 msgstr ""
 
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2044
+#: ../fish/guestfish-actions.pod:2074
 msgid "inspect-is-multipart"
 msgstr ""
 
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2046
+#: ../fish/guestfish-actions.pod:2076
 #, no-wrap
 msgid ""
 " inspect-is-multipart root\n"
@@ -26177,19 +26644,19 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2051
+#: ../fish/guestfish-actions.pod:2081
 msgid ""
 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
 "then this returns true if the disk is part of a set."
 msgstr ""
 
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2057
+#: ../fish/guestfish-actions.pod:2087
 msgid "inspect-is-netinst"
 msgstr ""
 
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2059
+#: ../fish/guestfish-actions.pod:2089
 #, no-wrap
 msgid ""
 " inspect-is-netinst root\n"
@@ -26197,7 +26664,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2064
+#: ../fish/guestfish-actions.pod:2094
 msgid ""
 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
 "then this returns true if the disk is a network installer, ie. not a self-"
@@ -26207,13 +26674,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2072
+#: ../fish/guestfish-actions.pod:2102
 msgid "inspect-list-applications"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2074
+#: ../fish/guestfish-actions.pod:2104
 #, no-wrap
 msgid ""
 " inspect-list-applications root\n"
@@ -26222,7 +26689,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2081
+#: ../fish/guestfish-actions.pod:2111
 msgid ""
 "I<Note:> This call works differently from other parts of the inspection "
 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
@@ -26235,13 +26702,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2171
+#: ../fish/guestfish-actions.pod:2201
 msgid "inspect-os"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2173
+#: ../fish/guestfish-actions.pod:2203
 #, no-wrap
 msgid ""
 " inspect-os\n"
@@ -26250,7 +26717,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2188
+#: ../fish/guestfish-actions.pod:2218
 msgid ""
 "You can pass the root string(s) returned to other L</inspect-get-*> "
 "functions in order to query further information about each operating system, "
@@ -26259,7 +26726,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2193
+#: ../fish/guestfish-actions.pod:2223
 msgid ""
 "This function uses other libguestfs features such as L</mount-ro> and L</"
 "umount-all> in order to mount and unmount filesystems and look at the "
@@ -26269,20 +26736,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2205 ../fish/guestfish-actions.pod:2381
-#: ../fish/guestfish-actions.pod:2427
+#: ../fish/guestfish-actions.pod:2235 ../fish/guestfish-actions.pod:2411
+#: ../fish/guestfish-actions.pod:2457
 msgid "See also L</list-filesystems>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2207
+#: ../fish/guestfish-actions.pod:2237
 msgid "is-blockdev"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2209
+#: ../fish/guestfish-actions.pod:2239
 #, no-wrap
 msgid ""
 " is-blockdev path\n"
@@ -26291,22 +26758,22 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2214 ../fish/guestfish-actions.pod:2232
-#: ../fish/guestfish-actions.pod:2251 ../fish/guestfish-actions.pod:2260
-#: ../fish/guestfish-actions.pod:2270 ../fish/guestfish-actions.pod:2304
-#: ../fish/guestfish-actions.pod:2313
+#: ../fish/guestfish-actions.pod:2244 ../fish/guestfish-actions.pod:2262
+#: ../fish/guestfish-actions.pod:2281 ../fish/guestfish-actions.pod:2290
+#: ../fish/guestfish-actions.pod:2300 ../fish/guestfish-actions.pod:2334
+#: ../fish/guestfish-actions.pod:2343
 msgid "See also L</stat>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2216
+#: ../fish/guestfish-actions.pod:2246
 msgid "is-busy"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2218
+#: ../fish/guestfish-actions.pod:2248
 #, no-wrap
 msgid ""
 " is-busy\n"
@@ -26315,13 +26782,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2225
+#: ../fish/guestfish-actions.pod:2255
 msgid "is-chardev"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2227
+#: ../fish/guestfish-actions.pod:2257
 #, no-wrap
 msgid ""
 " is-chardev path\n"
@@ -26330,13 +26797,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2234
+#: ../fish/guestfish-actions.pod:2264
 msgid "is-config"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2236
+#: ../fish/guestfish-actions.pod:2266
 #, no-wrap
 msgid ""
 " is-config\n"
@@ -26345,13 +26812,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2243
+#: ../fish/guestfish-actions.pod:2273
 msgid "is-dir"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2245
+#: ../fish/guestfish-actions.pod:2275
 #, no-wrap
 msgid ""
 " is-dir path\n"
@@ -26360,13 +26827,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2253
+#: ../fish/guestfish-actions.pod:2283
 msgid "is-fifo"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2255
+#: ../fish/guestfish-actions.pod:2285
 #, no-wrap
 msgid ""
 " is-fifo path\n"
@@ -26375,13 +26842,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2262
+#: ../fish/guestfish-actions.pod:2292
 msgid "is-file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2264
+#: ../fish/guestfish-actions.pod:2294
 #, no-wrap
 msgid ""
 " is-file path\n"
@@ -26390,13 +26857,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2272
+#: ../fish/guestfish-actions.pod:2302
 msgid "is-launching"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2274
+#: ../fish/guestfish-actions.pod:2304
 #, no-wrap
 msgid ""
 " is-launching\n"
@@ -26405,13 +26872,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2281
+#: ../fish/guestfish-actions.pod:2311
 msgid "is-lv"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2283
+#: ../fish/guestfish-actions.pod:2313
 #, no-wrap
 msgid ""
 " is-lv device\n"
@@ -26420,13 +26887,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2288
+#: ../fish/guestfish-actions.pod:2318
 msgid "is-ready"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2290
+#: ../fish/guestfish-actions.pod:2320
 #, no-wrap
 msgid ""
 " is-ready\n"
@@ -26435,13 +26902,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2297
+#: ../fish/guestfish-actions.pod:2327
 msgid "is-socket"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2299
+#: ../fish/guestfish-actions.pod:2329
 #, no-wrap
 msgid ""
 " is-socket path\n"
@@ -26450,13 +26917,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2306
+#: ../fish/guestfish-actions.pod:2336
 msgid "is-symlink"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2308
+#: ../fish/guestfish-actions.pod:2338
 #, no-wrap
 msgid ""
 " is-symlink path\n"
@@ -26465,13 +26932,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2315
+#: ../fish/guestfish-actions.pod:2345
 msgid "kill-subprocess"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2317
+#: ../fish/guestfish-actions.pod:2347
 #, no-wrap
 msgid ""
 " kill-subprocess\n"
@@ -26480,19 +26947,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2321
+#: ../fish/guestfish-actions.pod:2351
 msgid "launch"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2323
+#: ../fish/guestfish-actions.pod:2353
 msgid "run"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2325
+#: ../fish/guestfish-actions.pod:2355
 #, no-wrap
 msgid ""
 " launch\n"
@@ -26501,13 +26968,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2333
+#: ../fish/guestfish-actions.pod:2363
 msgid "lchown"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2335
+#: ../fish/guestfish-actions.pod:2365
 #, no-wrap
 msgid ""
 " lchown owner group path\n"
@@ -26516,7 +26983,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2337
+#: ../fish/guestfish-actions.pod:2367
 msgid ""
 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
 "chown> but if C<path> is a symlink then the link itself is changed, not the "
@@ -26525,13 +26992,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2345
+#: ../fish/guestfish-actions.pod:2375
 msgid "lgetxattr"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2347
+#: ../fish/guestfish-actions.pod:2377
 #, no-wrap
 msgid ""
 " lgetxattr path name\n"
@@ -26540,19 +27007,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2363
+#: ../fish/guestfish-actions.pod:2393
 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2365
+#: ../fish/guestfish-actions.pod:2395
 msgid "lgetxattrs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2367
+#: ../fish/guestfish-actions.pod:2397
 #, no-wrap
 msgid ""
 " lgetxattrs path\n"
@@ -26561,7 +27028,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2369
+#: ../fish/guestfish-actions.pod:2399
 msgid ""
 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
 "it returns the extended attributes of the link itself."
@@ -26569,13 +27036,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2373
+#: ../fish/guestfish-actions.pod:2403
 msgid "list-devices"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2375
+#: ../fish/guestfish-actions.pod:2405
 #, no-wrap
 msgid ""
 " list-devices\n"
@@ -26584,13 +27051,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2383
+#: ../fish/guestfish-actions.pod:2413
 msgid "list-filesystems"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2385
+#: ../fish/guestfish-actions.pod:2415
 #, no-wrap
 msgid ""
 " list-filesystems\n"
@@ -26599,7 +27066,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2404
+#: ../fish/guestfish-actions.pod:2434
 msgid ""
 "This command runs other libguestfs commands, which might include L</mount> "
 "and L</umount>, and therefore you should use this soon after launch and only "
@@ -26608,7 +27075,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2408
+#: ../fish/guestfish-actions.pod:2438
 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 "
@@ -26619,13 +27086,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2416
+#: ../fish/guestfish-actions.pod:2446
 msgid "list-partitions"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2418
+#: ../fish/guestfish-actions.pod:2448
 #, no-wrap
 msgid ""
 " list-partitions\n"
@@ -26634,7 +27101,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2424
+#: ../fish/guestfish-actions.pod:2454
 msgid ""
 "This does not return logical volumes.  For that you will need to call L</"
 "lvs>."
@@ -26642,13 +27109,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2429
+#: ../fish/guestfish-actions.pod:2459
 msgid "ll"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2431
+#: ../fish/guestfish-actions.pod:2461
 #, no-wrap
 msgid ""
 " ll directory\n"
@@ -26657,13 +27124,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2439
+#: ../fish/guestfish-actions.pod:2469
 msgid "ln"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2441
+#: ../fish/guestfish-actions.pod:2471
 #, no-wrap
 msgid ""
 " ln target linkname\n"
@@ -26672,13 +27139,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2445
+#: ../fish/guestfish-actions.pod:2475
 msgid "ln-f"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2447
+#: ../fish/guestfish-actions.pod:2477
 #, no-wrap
 msgid ""
 " ln-f target linkname\n"
@@ -26687,13 +27154,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2452
+#: ../fish/guestfish-actions.pod:2482
 msgid "ln-s"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2454
+#: ../fish/guestfish-actions.pod:2484
 #, no-wrap
 msgid ""
 " ln-s target linkname\n"
@@ -26702,13 +27169,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2458
+#: ../fish/guestfish-actions.pod:2488
 msgid "ln-sf"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2460
+#: ../fish/guestfish-actions.pod:2490
 #, no-wrap
 msgid ""
 " ln-sf target linkname\n"
@@ -26717,13 +27184,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2465
+#: ../fish/guestfish-actions.pod:2495
 msgid "lremovexattr"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2467
+#: ../fish/guestfish-actions.pod:2497
 #, no-wrap
 msgid ""
 " lremovexattr xattr path\n"
@@ -26732,7 +27199,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2469
+#: ../fish/guestfish-actions.pod:2499
 msgid ""
 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
 "it removes an extended attribute of the link itself."
@@ -26740,13 +27207,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2473
+#: ../fish/guestfish-actions.pod:2503
 msgid "ls"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2475
+#: ../fish/guestfish-actions.pod:2505
 #, no-wrap
 msgid ""
 " ls directory\n"
@@ -26755,7 +27222,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2481
+#: ../fish/guestfish-actions.pod:2511
 msgid ""
 "This command is mostly useful for interactive sessions.  Programs should "
 "probably use L</readdir> instead."
@@ -26763,13 +27230,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2484
+#: ../fish/guestfish-actions.pod:2514
 msgid "lsetxattr"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2486
+#: ../fish/guestfish-actions.pod:2516
 #, no-wrap
 msgid ""
 " lsetxattr xattr val vallen path\n"
@@ -26778,7 +27245,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2488
+#: ../fish/guestfish-actions.pod:2518
 msgid ""
 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
 "sets an extended attribute of the link itself."
@@ -26786,13 +27253,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2492
+#: ../fish/guestfish-actions.pod:2522
 msgid "lstat"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2494
+#: ../fish/guestfish-actions.pod:2524
 #, no-wrap
 msgid ""
 " lstat path\n"
@@ -26801,7 +27268,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2498
+#: ../fish/guestfish-actions.pod:2528
 msgid ""
 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
 "the link is stat-ed, not the file it refers to."
@@ -26809,13 +27276,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2504
+#: ../fish/guestfish-actions.pod:2534
 msgid "lstatlist"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2506
+#: ../fish/guestfish-actions.pod:2536
 #, no-wrap
 msgid ""
 " lstatlist path 'names ...'\n"
@@ -26824,7 +27291,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2508
+#: ../fish/guestfish-actions.pod:2538
 msgid ""
 "This call allows you to perform the L</lstat> operation on multiple files, "
 "where all files are in the directory C<path>.  C<names> is the list of files "
@@ -26833,7 +27300,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2517
+#: ../fish/guestfish-actions.pod:2547
 msgid ""
 "This call is intended for programs that want to efficiently list a directory "
 "contents without making many round-trips.  See also L</lxattrlist> for a "
@@ -26845,13 +27312,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2525
+#: ../fish/guestfish-actions.pod:2555
 msgid "luks-add-key"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2527
+#: ../fish/guestfish-actions.pod:2557
 #, no-wrap
 msgid ""
 " luks-add-key device keyslot\n"
@@ -26860,7 +27327,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2534
+#: ../fish/guestfish-actions.pod:2564
 msgid ""
 "Note that if C<keyslot> already contains a key, then this command will "
 "fail.  You have to use L</luks-kill-slot> first to remove that key."
@@ -26868,9 +27335,9 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2538 ../fish/guestfish-actions.pod:2560
-#: ../fish/guestfish-actions.pod:2573 ../fish/guestfish-actions.pod:2587
-#: ../fish/guestfish-actions.pod:2610 ../fish/guestfish-actions.pod:2620
+#: ../fish/guestfish-actions.pod:2568 ../fish/guestfish-actions.pod:2590
+#: ../fish/guestfish-actions.pod:2603 ../fish/guestfish-actions.pod:2617
+#: ../fish/guestfish-actions.pod:2640 ../fish/guestfish-actions.pod:2650
 msgid ""
 "This command has one or more key or passphrase parameters.  Guestfish will "
 "prompt for these separately."
@@ -26878,13 +27345,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2541
+#: ../fish/guestfish-actions.pod:2571
 msgid "luks-close"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2543
+#: ../fish/guestfish-actions.pod:2573
 #, no-wrap
 msgid ""
 " luks-close device\n"
@@ -26893,7 +27360,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2545
+#: ../fish/guestfish-actions.pod:2575
 msgid ""
 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
@@ -26903,13 +27370,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2551
+#: ../fish/guestfish-actions.pod:2581
 msgid "luks-format"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2553
+#: ../fish/guestfish-actions.pod:2583
 #, no-wrap
 msgid ""
 " luks-format device keyslot\n"
@@ -26918,13 +27385,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2566
+#: ../fish/guestfish-actions.pod:2596
 msgid "luks-format-cipher"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2568
+#: ../fish/guestfish-actions.pod:2598
 #, no-wrap
 msgid ""
 " luks-format-cipher device keyslot cipher\n"
@@ -26933,7 +27400,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2570
+#: ../fish/guestfish-actions.pod:2600
 msgid ""
 "This command is the same as L</luks-format> but it also allows you to set "
 "the C<cipher> used."
@@ -26941,13 +27408,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2579
+#: ../fish/guestfish-actions.pod:2609
 msgid "luks-kill-slot"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2581
+#: ../fish/guestfish-actions.pod:2611
 #, no-wrap
 msgid ""
 " luks-kill-slot device keyslot\n"
@@ -26956,13 +27423,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2590
+#: ../fish/guestfish-actions.pod:2620
 msgid "luks-open"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2592
+#: ../fish/guestfish-actions.pod:2622
 #, no-wrap
 msgid ""
 " luks-open device mapname\n"
@@ -26971,7 +27438,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2606
+#: ../fish/guestfish-actions.pod:2636
 msgid ""
 "If this block device contains LVM volume groups, then calling L</vgscan> "
 "followed by L</vg-activate-all> will make them visible."
@@ -26979,13 +27446,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2613
+#: ../fish/guestfish-actions.pod:2643
 msgid "luks-open-ro"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2615
+#: ../fish/guestfish-actions.pod:2645
 #, no-wrap
 msgid ""
 " luks-open-ro device mapname\n"
@@ -26994,20 +27461,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2617
+#: ../fish/guestfish-actions.pod:2647
 msgid ""
 "This is the same as L</luks-open> except that a read-only mapping is created."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2623
+#: ../fish/guestfish-actions.pod:2653
 msgid "lvcreate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2625
+#: ../fish/guestfish-actions.pod:2655
 #, no-wrap
 msgid ""
 " lvcreate logvol volgroup mbytes\n"
@@ -27016,13 +27483,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2630
+#: ../fish/guestfish-actions.pod:2660
 msgid "lvm-canonical-lv-name"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2632
+#: ../fish/guestfish-actions.pod:2662
 #, no-wrap
 msgid ""
 " lvm-canonical-lv-name lvname\n"
@@ -27031,19 +27498,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2641
+#: ../fish/guestfish-actions.pod:2671
 msgid "See also L</is-lv>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2643
+#: ../fish/guestfish-actions.pod:2673
 msgid "lvm-clear-filter"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2645
+#: ../fish/guestfish-actions.pod:2675
 #, no-wrap
 msgid ""
 " lvm-clear-filter\n"
@@ -27052,7 +27519,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2647
+#: ../fish/guestfish-actions.pod:2677
 msgid ""
 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
 "block device."
@@ -27060,13 +27527,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2653
+#: ../fish/guestfish-actions.pod:2683
 msgid "lvm-remove-all"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2655
+#: ../fish/guestfish-actions.pod:2685
 #, no-wrap
 msgid ""
 " lvm-remove-all\n"
@@ -27075,13 +27542,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2663
+#: ../fish/guestfish-actions.pod:2693
 msgid "lvm-set-filter"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2665
+#: ../fish/guestfish-actions.pod:2695
 #, no-wrap
 msgid ""
 " lvm-set-filter 'devices ...'\n"
@@ -27090,13 +27557,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2690
+#: ../fish/guestfish-actions.pod:2720
 msgid "lvremove"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2692
+#: ../fish/guestfish-actions.pod:2722
 #, no-wrap
 msgid ""
 " lvremove device\n"
@@ -27105,13 +27572,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2700
+#: ../fish/guestfish-actions.pod:2730
 msgid "lvrename"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2702
+#: ../fish/guestfish-actions.pod:2732
 #, no-wrap
 msgid ""
 " lvrename logvol newlogvol\n"
@@ -27120,13 +27587,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2706
+#: ../fish/guestfish-actions.pod:2736
 msgid "lvresize"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2708
+#: ../fish/guestfish-actions.pod:2738
 #, no-wrap
 msgid ""
 " lvresize device mbytes\n"
@@ -27135,13 +27602,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2714
+#: ../fish/guestfish-actions.pod:2744
 msgid "lvresize-free"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2716
+#: ../fish/guestfish-actions.pod:2746
 #, no-wrap
 msgid ""
 " lvresize-free lv percent\n"
@@ -27150,13 +27617,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2724
+#: ../fish/guestfish-actions.pod:2754
 msgid "lvs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2726
+#: ../fish/guestfish-actions.pod:2756
 #, no-wrap
 msgid ""
 " lvs\n"
@@ -27165,19 +27632,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2734
+#: ../fish/guestfish-actions.pod:2764
 msgid "See also L</lvs-full>, L</list-filesystems>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2736
+#: ../fish/guestfish-actions.pod:2766
 msgid "lvs-full"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2738
+#: ../fish/guestfish-actions.pod:2768
 #, no-wrap
 msgid ""
 " lvs-full\n"
@@ -27186,13 +27653,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2743
+#: ../fish/guestfish-actions.pod:2773
 msgid "lvuuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2745
+#: ../fish/guestfish-actions.pod:2775
 #, no-wrap
 msgid ""
 " lvuuid device\n"
@@ -27201,13 +27668,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2749
+#: ../fish/guestfish-actions.pod:2779
 msgid "lxattrlist"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2751
+#: ../fish/guestfish-actions.pod:2781
 #, no-wrap
 msgid ""
 " lxattrlist path 'names ...'\n"
@@ -27216,7 +27683,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2767
+#: ../fish/guestfish-actions.pod:2797
 msgid ""
 "This call is intended for programs that want to efficiently list a directory "
 "contents without making many round-trips.  See also L</lstatlist> for a "
@@ -27228,13 +27695,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2775
+#: ../fish/guestfish-actions.pod:2805
 msgid "mkdir"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2777
+#: ../fish/guestfish-actions.pod:2807
 #, no-wrap
 msgid ""
 " mkdir path\n"
@@ -27243,13 +27710,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2781
+#: ../fish/guestfish-actions.pod:2811
 msgid "mkdir-mode"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2783
+#: ../fish/guestfish-actions.pod:2813
 #, no-wrap
 msgid ""
 " mkdir-mode path mode\n"
@@ -27258,19 +27725,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2792
+#: ../fish/guestfish-actions.pod:2822
 msgid "See also L</mkdir>, L</umask>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2794
+#: ../fish/guestfish-actions.pod:2824
 msgid "mkdir-p"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2796
+#: ../fish/guestfish-actions.pod:2826
 #, no-wrap
 msgid ""
 " mkdir-p path\n"
@@ -27279,13 +27746,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2801
+#: ../fish/guestfish-actions.pod:2831
 msgid "mkdtemp"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2803
+#: ../fish/guestfish-actions.pod:2833
 #, no-wrap
 msgid ""
 " mkdtemp template\n"
@@ -27294,13 +27761,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2824
+#: ../fish/guestfish-actions.pod:2854
 msgid "mke2fs-J"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2826
+#: ../fish/guestfish-actions.pod:2856
 #, no-wrap
 msgid ""
 " mke2fs-J fstype blocksize device journal\n"
@@ -27309,19 +27776,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2834
+#: ../fish/guestfish-actions.pod:2864
 msgid "See also L</mke2journal>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2836
+#: ../fish/guestfish-actions.pod:2866
 msgid "mke2fs-JL"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2838
+#: ../fish/guestfish-actions.pod:2868
 #, no-wrap
 msgid ""
 " mke2fs-JL fstype blocksize device label\n"
@@ -27330,19 +27797,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2843
+#: ../fish/guestfish-actions.pod:2873
 msgid "See also L</mke2journal-L>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2845
+#: ../fish/guestfish-actions.pod:2875
 msgid "mke2fs-JU"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2847
+#: ../fish/guestfish-actions.pod:2877
 #, no-wrap
 msgid ""
 " mke2fs-JU fstype blocksize device uuid\n"
@@ -27351,19 +27818,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2852
+#: ../fish/guestfish-actions.pod:2882
 msgid "See also L</mke2journal-U>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2854
+#: ../fish/guestfish-actions.pod:2884
 msgid "mke2journal"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2856
+#: ../fish/guestfish-actions.pod:2886
 #, no-wrap
 msgid ""
 " mke2journal blocksize device\n"
@@ -27372,13 +27839,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2863
+#: ../fish/guestfish-actions.pod:2893
 msgid "mke2journal-L"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2865
+#: ../fish/guestfish-actions.pod:2895
 #, no-wrap
 msgid ""
 " mke2journal-L blocksize label device\n"
@@ -27387,13 +27854,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2869
+#: ../fish/guestfish-actions.pod:2899
 msgid "mke2journal-U"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2871
+#: ../fish/guestfish-actions.pod:2901
 #, no-wrap
 msgid ""
 " mke2journal-U blocksize uuid device\n"
@@ -27402,13 +27869,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2875
+#: ../fish/guestfish-actions.pod:2905
 msgid "mkfifo"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2877
+#: ../fish/guestfish-actions.pod:2907
 #, no-wrap
 msgid ""
 " mkfifo mode path\n"
@@ -27417,7 +27884,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2879
+#: ../fish/guestfish-actions.pod:2909
 msgid ""
 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
 "is just a convenient wrapper around L</mknod>."
@@ -27425,13 +27892,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2885
+#: ../fish/guestfish-actions.pod:2915
 msgid "mkfs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2887
+#: ../fish/guestfish-actions.pod:2917
 #, no-wrap
 msgid ""
 " mkfs fstype device\n"
@@ -27440,13 +27907,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2893
+#: ../fish/guestfish-actions.pod:2923
 msgid "mkfs-b"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2895
+#: ../fish/guestfish-actions.pod:2925
 #, no-wrap
 msgid ""
 " mkfs-b fstype blocksize device\n"
@@ -27455,7 +27922,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2897
+#: ../fish/guestfish-actions.pod:2927
 msgid ""
 "This call is similar to L</mkfs>, but it allows you to control the block "
 "size of the resulting filesystem.  Supported block sizes depend on the "
@@ -27464,12 +27931,12 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2912
+#: ../fish/guestfish-actions.pod:2942
 msgid "mkfs-opts"
 msgstr ""
 
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2914
+#: ../fish/guestfish-actions.pod:2944
 #, no-wrap
 msgid ""
 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
@@ -27478,13 +27945,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2949
+#: ../fish/guestfish-actions.pod:2979
 msgid "mkmountpoint"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2951
+#: ../fish/guestfish-actions.pod:2981
 #, no-wrap
 msgid ""
 " mkmountpoint exemptpath\n"
@@ -27493,7 +27960,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2953
+#: ../fish/guestfish-actions.pod:2983
 msgid ""
 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
 "to create extra mountpoints before mounting the first filesystem."
@@ -27501,7 +27968,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2977
+#: ../fish/guestfish-actions.pod:3007
 msgid ""
 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
 "unexpected errors if you try to mix these calls.  It is safest to manually "
@@ -27510,7 +27977,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2981
+#: ../fish/guestfish-actions.pod:3011
 msgid ""
 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
 "for this to work for manual mountpoints, you must ensure that the innermost "
@@ -27518,7 +27985,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../fish/guestfish-actions.pod:2988
+#: ../fish/guestfish-actions.pod:3018
 msgid ""
 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
 "L</umount-all> to be called when the handle is closed which can also trigger "
@@ -27527,13 +27994,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:2992
+#: ../fish/guestfish-actions.pod:3022
 msgid "mknod"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:2994
+#: ../fish/guestfish-actions.pod:3024
 #, no-wrap
 msgid ""
 " mknod mode devmajor devminor path\n"
@@ -27542,7 +28009,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3004
+#: ../fish/guestfish-actions.pod:3034
 msgid ""
 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
@@ -27554,13 +28021,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3014
+#: ../fish/guestfish-actions.pod:3044
 msgid "mknod-b"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3016
+#: ../fish/guestfish-actions.pod:3046
 #, no-wrap
 msgid ""
 " mknod-b mode devmajor devminor path\n"
@@ -27569,7 +28036,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3018
+#: ../fish/guestfish-actions.pod:3048
 msgid ""
 "This call creates a block device node called C<path> with mode C<mode> and "
 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
@@ -27578,13 +28045,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3024
+#: ../fish/guestfish-actions.pod:3054
 msgid "mknod-c"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3026
+#: ../fish/guestfish-actions.pod:3056
 #, no-wrap
 msgid ""
 " mknod-c mode devmajor devminor path\n"
@@ -27593,7 +28060,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3028
+#: ../fish/guestfish-actions.pod:3058
 msgid ""
 "This call creates a char device node called C<path> with mode C<mode> and "
 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
@@ -27602,13 +28069,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3034
+#: ../fish/guestfish-actions.pod:3064
 msgid "mkswap"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3036
+#: ../fish/guestfish-actions.pod:3066
 #, no-wrap
 msgid ""
 " mkswap device\n"
@@ -27617,13 +28084,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3040
+#: ../fish/guestfish-actions.pod:3070
 msgid "mkswap-L"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3042
+#: ../fish/guestfish-actions.pod:3072
 #, no-wrap
 msgid ""
 " mkswap-L label device\n"
@@ -27632,13 +28099,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3050
+#: ../fish/guestfish-actions.pod:3080
 msgid "mkswap-U"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3052
+#: ../fish/guestfish-actions.pod:3082
 #, no-wrap
 msgid ""
 " mkswap-U uuid device\n"
@@ -27647,13 +28114,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3056
+#: ../fish/guestfish-actions.pod:3086
 msgid "mkswap-file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3058
+#: ../fish/guestfish-actions.pod:3088
 #, no-wrap
 msgid ""
 " mkswap-file path\n"
@@ -27662,7 +28129,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3062
+#: ../fish/guestfish-actions.pod:3092
 msgid ""
 "This command just writes a swap file signature to an existing file.  To "
 "create the file itself, use something like L</fallocate>."
@@ -27670,13 +28137,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3065
+#: ../fish/guestfish-actions.pod:3095
 msgid "modprobe"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3067
+#: ../fish/guestfish-actions.pod:3097
 #, no-wrap
 msgid ""
 " modprobe modulename\n"
@@ -27685,13 +28152,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3074
+#: ../fish/guestfish-actions.pod:3104
 msgid "mount"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3076
+#: ../fish/guestfish-actions.pod:3106
 #, no-wrap
 msgid ""
 " mount device mountpoint\n"
@@ -27700,7 +28167,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3092
+#: ../fish/guestfish-actions.pod:3122
 msgid ""
 "B<Important note:> When you use this call, the filesystem options C<sync> "
 "and C<noatime> are set implicitly.  This was originally done because we "
@@ -27713,13 +28180,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3102
+#: ../fish/guestfish-actions.pod:3132
 msgid "mount-loop"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3104
+#: ../fish/guestfish-actions.pod:3134
 #, no-wrap
 msgid ""
 " mount-loop file mountpoint\n"
@@ -27728,13 +28195,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3110
+#: ../fish/guestfish-actions.pod:3140
 msgid "mount-options"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3112
+#: ../fish/guestfish-actions.pod:3142
 #, no-wrap
 msgid ""
 " mount-options options device mountpoint\n"
@@ -27743,7 +28210,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3114
+#: ../fish/guestfish-actions.pod:3144
 msgid ""
 "This is the same as the L</mount> command, but it allows you to set the "
 "mount options as for the L<mount(8)> I<-o> flag."
@@ -27751,13 +28218,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3122
+#: ../fish/guestfish-actions.pod:3152
 msgid "mount-ro"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3124
+#: ../fish/guestfish-actions.pod:3154
 #, no-wrap
 msgid ""
 " mount-ro device mountpoint\n"
@@ -27766,7 +28233,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3126
+#: ../fish/guestfish-actions.pod:3156
 msgid ""
 "This is the same as the L</mount> command, but it mounts the filesystem with "
 "the read-only (I<-o ro>) flag."
@@ -27774,13 +28241,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3129
+#: ../fish/guestfish-actions.pod:3159
 msgid "mount-vfs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3131
+#: ../fish/guestfish-actions.pod:3161
 #, no-wrap
 msgid ""
 " mount-vfs options vfstype device mountpoint\n"
@@ -27789,7 +28256,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3133
+#: ../fish/guestfish-actions.pod:3163
 msgid ""
 "This is the same as the L</mount> command, but it allows you to set both the "
 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
@@ -27797,13 +28264,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3137
+#: ../fish/guestfish-actions.pod:3167
 msgid "mountpoints"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3139
+#: ../fish/guestfish-actions.pod:3169
 #, no-wrap
 msgid ""
 " mountpoints\n"
@@ -27812,7 +28279,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3141
+#: ../fish/guestfish-actions.pod:3171
 msgid ""
 "This call is similar to L</mounts>.  That call returns a list of devices.  "
 "This one returns a hash table (map) of device name to directory where the "
@@ -27821,13 +28288,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3145
+#: ../fish/guestfish-actions.pod:3175
 msgid "mounts"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3147
+#: ../fish/guestfish-actions.pod:3177
 #, no-wrap
 msgid ""
 " mounts\n"
@@ -27836,19 +28303,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3154
+#: ../fish/guestfish-actions.pod:3184
 msgid "See also: L</mountpoints>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3156
+#: ../fish/guestfish-actions.pod:3186
 msgid "mv"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3158
+#: ../fish/guestfish-actions.pod:3188
 #, no-wrap
 msgid ""
 " mv src dest\n"
@@ -27857,13 +28324,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3163
+#: ../fish/guestfish-actions.pod:3193
 msgid "ntfs-3g-probe"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3165
+#: ../fish/guestfish-actions.pod:3195
 #, no-wrap
 msgid ""
 " ntfs-3g-probe true|false device\n"
@@ -27872,13 +28339,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3179
+#: ../fish/guestfish-actions.pod:3209
 msgid "ntfsresize"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3181
+#: ../fish/guestfish-actions.pod:3211
 #, no-wrap
 msgid ""
 " ntfsresize device\n"
@@ -27887,13 +28354,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3187
+#: ../fish/guestfish-actions.pod:3217
 msgid "ntfsresize-size"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3189
+#: ../fish/guestfish-actions.pod:3219
 #, no-wrap
 msgid ""
 " ntfsresize-size device size\n"
@@ -27902,7 +28369,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3191
+#: ../fish/guestfish-actions.pod:3221
 msgid ""
 "This command is the same as L</ntfsresize> except that it allows you to "
 "specify the new size (in bytes) explicitly."
@@ -27910,13 +28377,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3194
+#: ../fish/guestfish-actions.pod:3224
 msgid "part-add"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3196
+#: ../fish/guestfish-actions.pod:3226
 #, no-wrap
 msgid ""
 " part-add device prlogex startsect endsect\n"
@@ -27925,7 +28392,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3198
+#: ../fish/guestfish-actions.pod:3228
 msgid ""
 "This command adds a partition to C<device>.  If there is no partition table "
 "on the device, call L</part-init> first."
@@ -27933,7 +28400,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3210
+#: ../fish/guestfish-actions.pod:3240
 msgid ""
 "Creating a partition which covers the whole disk is not so easy.  Use L</"
 "part-disk> to do that."
@@ -27941,13 +28408,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3213
+#: ../fish/guestfish-actions.pod:3243
 msgid "part-del"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3215
+#: ../fish/guestfish-actions.pod:3245
 #, no-wrap
 msgid ""
 " part-del device partnum\n"
@@ -27956,13 +28423,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3223
+#: ../fish/guestfish-actions.pod:3253
 msgid "part-disk"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3225
+#: ../fish/guestfish-actions.pod:3255
 #, no-wrap
 msgid ""
 " part-disk device parttype\n"
@@ -27971,7 +28438,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3227
+#: ../fish/guestfish-actions.pod:3257
 msgid ""
 "This command is simply a combination of L</part-init> followed by L</part-"
 "add> to create a single primary partition covering the whole disk."
@@ -27979,7 +28446,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3231
+#: ../fish/guestfish-actions.pod:3261
 msgid ""
 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
 "possible values are described in L</part-init>."
@@ -27987,13 +28454,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3237
+#: ../fish/guestfish-actions.pod:3267
 msgid "part-get-bootable"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3239
+#: ../fish/guestfish-actions.pod:3269
 #, no-wrap
 msgid ""
 " part-get-bootable device partnum\n"
@@ -28002,19 +28469,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3244
+#: ../fish/guestfish-actions.pod:3274
 msgid "See also L</part-set-bootable>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3246
+#: ../fish/guestfish-actions.pod:3276
 msgid "part-get-mbr-id"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3248
+#: ../fish/guestfish-actions.pod:3278
 #, no-wrap
 msgid ""
 " part-get-mbr-id device partnum\n"
@@ -28023,7 +28490,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3253 ../fish/guestfish-actions.pod:3391
+#: ../fish/guestfish-actions.pod:3283 ../fish/guestfish-actions.pod:3421
 msgid ""
 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
 "undefined results for other partition table types (see L</part-get-"
@@ -28032,13 +28499,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3257
+#: ../fish/guestfish-actions.pod:3287
 msgid "part-get-parttype"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3259
+#: ../fish/guestfish-actions.pod:3289
 #, no-wrap
 msgid ""
 " part-get-parttype device\n"
@@ -28047,7 +28514,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3264
+#: ../fish/guestfish-actions.pod:3294
 msgid ""
 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
@@ -28056,13 +28523,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3269
+#: ../fish/guestfish-actions.pod:3299
 msgid "part-init"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3271
+#: ../fish/guestfish-actions.pod:3301
 #, no-wrap
 msgid ""
 " part-init device parttype\n"
@@ -28071,7 +28538,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3277
+#: ../fish/guestfish-actions.pod:3307
 msgid ""
 "Initially there are no partitions.  Following this, you should call L</part-"
 "add> for each partition required."
@@ -28079,13 +28546,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3340
+#: ../fish/guestfish-actions.pod:3370
 msgid "part-list"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3342
+#: ../fish/guestfish-actions.pod:3372
 #, no-wrap
 msgid ""
 " part-list device\n"
@@ -28094,7 +28561,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3357
+#: ../fish/guestfish-actions.pod:3387
 msgid ""
 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
 "the device's sector size, see L</blockdev-getss>."
@@ -28102,13 +28569,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3370
+#: ../fish/guestfish-actions.pod:3400
 msgid "part-set-bootable"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3372
+#: ../fish/guestfish-actions.pod:3402
 #, no-wrap
 msgid ""
 " part-set-bootable device partnum true|false\n"
@@ -28117,13 +28584,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3381
+#: ../fish/guestfish-actions.pod:3411
 msgid "part-set-mbr-id"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3383
+#: ../fish/guestfish-actions.pod:3413
 #, no-wrap
 msgid ""
 " part-set-mbr-id device partnum idbyte\n"
@@ -28132,13 +28599,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3395
+#: ../fish/guestfish-actions.pod:3425
 msgid "part-set-name"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3397
+#: ../fish/guestfish-actions.pod:3427
 #, no-wrap
 msgid ""
 " part-set-name device partnum name\n"
@@ -28147,13 +28614,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3405
+#: ../fish/guestfish-actions.pod:3435
 msgid "part-to-dev"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3407
+#: ../fish/guestfish-actions.pod:3437
 #, no-wrap
 msgid ""
 " part-to-dev partition\n"
@@ -28162,7 +28629,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3413
+#: ../fish/guestfish-actions.pod:3443
 msgid ""
 "The named partition must exist, for example as a string returned from L</"
 "list-partitions>."
@@ -28170,13 +28637,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3416
+#: ../fish/guestfish-actions.pod:3446
 msgid "ping-daemon"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3418
+#: ../fish/guestfish-actions.pod:3448
 #, no-wrap
 msgid ""
 " ping-daemon\n"
@@ -28185,13 +28652,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3425
+#: ../fish/guestfish-actions.pod:3455
 msgid "pread"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3427
+#: ../fish/guestfish-actions.pod:3457
 #, no-wrap
 msgid ""
 " pread path count offset\n"
@@ -28200,19 +28667,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3435
+#: ../fish/guestfish-actions.pod:3465
 msgid "See also L</pwrite>, L</pread-device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3440
+#: ../fish/guestfish-actions.pod:3470
 msgid "pread-device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3442
+#: ../fish/guestfish-actions.pod:3472
 #, no-wrap
 msgid ""
 " pread-device device count offset\n"
@@ -28221,19 +28688,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3450
+#: ../fish/guestfish-actions.pod:3480
 msgid "See also L</pread>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3455
+#: ../fish/guestfish-actions.pod:3485
 msgid "pvcreate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3457
+#: ../fish/guestfish-actions.pod:3487
 #, no-wrap
 msgid ""
 " pvcreate device\n"
@@ -28242,13 +28709,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3463
+#: ../fish/guestfish-actions.pod:3493
 msgid "pvremove"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3465
+#: ../fish/guestfish-actions.pod:3495
 #, no-wrap
 msgid ""
 " pvremove device\n"
@@ -28257,13 +28724,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3474
+#: ../fish/guestfish-actions.pod:3504
 msgid "pvresize"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3476
+#: ../fish/guestfish-actions.pod:3506
 #, no-wrap
 msgid ""
 " pvresize device\n"
@@ -28272,13 +28739,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3481
+#: ../fish/guestfish-actions.pod:3511
 msgid "pvresize-size"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3483
+#: ../fish/guestfish-actions.pod:3513
 #, no-wrap
 msgid ""
 " pvresize-size device size\n"
@@ -28287,7 +28754,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3485
+#: ../fish/guestfish-actions.pod:3515
 msgid ""
 "This command is the same as L</pvresize> except that it allows you to "
 "specify the new size (in bytes) explicitly."
@@ -28295,13 +28762,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3488
+#: ../fish/guestfish-actions.pod:3518
 msgid "pvs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3490
+#: ../fish/guestfish-actions.pod:3520
 #, no-wrap
 msgid ""
 " pvs\n"
@@ -28310,19 +28777,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3498
+#: ../fish/guestfish-actions.pod:3528
 msgid "See also L</pvs-full>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3500
+#: ../fish/guestfish-actions.pod:3530
 msgid "pvs-full"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3502
+#: ../fish/guestfish-actions.pod:3532
 #, no-wrap
 msgid ""
 " pvs-full\n"
@@ -28331,13 +28798,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3507
+#: ../fish/guestfish-actions.pod:3537
 msgid "pvuuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3509
+#: ../fish/guestfish-actions.pod:3539
 #, no-wrap
 msgid ""
 " pvuuid device\n"
@@ -28346,13 +28813,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3513
+#: ../fish/guestfish-actions.pod:3543
 msgid "pwrite"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3515
+#: ../fish/guestfish-actions.pod:3545
 #, no-wrap
 msgid ""
 " pwrite path content offset\n"
@@ -28361,19 +28828,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3526
+#: ../fish/guestfish-actions.pod:3556
 msgid "See also L</pread>, L</pwrite-device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3531
+#: ../fish/guestfish-actions.pod:3561
 msgid "pwrite-device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3533
+#: ../fish/guestfish-actions.pod:3563
 #, no-wrap
 msgid ""
 " pwrite-device device content offset\n"
@@ -28382,19 +28849,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3543
+#: ../fish/guestfish-actions.pod:3573
 msgid "See also L</pwrite>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3548
+#: ../fish/guestfish-actions.pod:3578
 msgid "read-file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3550
+#: ../fish/guestfish-actions.pod:3580
 #, no-wrap
 msgid ""
 " read-file path\n"
@@ -28403,7 +28870,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3555
+#: ../fish/guestfish-actions.pod:3585
 msgid ""
 "Unlike L</cat>, this function can correctly handle files that contain "
 "embedded ASCII NUL characters.  However unlike L</download>, this function "
@@ -28412,13 +28879,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3563
+#: ../fish/guestfish-actions.pod:3593
 msgid "read-lines"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3565
+#: ../fish/guestfish-actions.pod:3595
 #, no-wrap
 msgid ""
 " read-lines path\n"
@@ -28427,7 +28894,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3572
+#: ../fish/guestfish-actions.pod:3602
 msgid ""
 "Note that this function cannot correctly handle binary files (specifically, "
 "files containing C<\\0> character which is treated as end of line).  For "
@@ -28437,13 +28904,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3577
+#: ../fish/guestfish-actions.pod:3607
 msgid "readdir"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3579
+#: ../fish/guestfish-actions.pod:3609
 #, no-wrap
 msgid ""
 " readdir dir\n"
@@ -28452,7 +28919,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3631
+#: ../fish/guestfish-actions.pod:3661
 msgid ""
 "This function is primarily intended for use by programs.  To get a simple "
 "list of names, use L</ls>.  To get a printable directory for human "
@@ -28461,13 +28928,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3635
+#: ../fish/guestfish-actions.pod:3665
 msgid "readlink"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3637
+#: ../fish/guestfish-actions.pod:3667
 #, no-wrap
 msgid ""
 " readlink path\n"
@@ -28476,13 +28943,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3641
+#: ../fish/guestfish-actions.pod:3671
 msgid "readlinklist"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3643
+#: ../fish/guestfish-actions.pod:3673
 #, no-wrap
 msgid ""
 " readlinklist path 'names ...'\n"
@@ -28491,13 +28958,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3667
+#: ../fish/guestfish-actions.pod:3697
 msgid "realpath"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3669
+#: ../fish/guestfish-actions.pod:3699
 #, no-wrap
 msgid ""
 " realpath path\n"
@@ -28506,13 +28973,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3674
+#: ../fish/guestfish-actions.pod:3704
 msgid "removexattr"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3676
+#: ../fish/guestfish-actions.pod:3706
 #, no-wrap
 msgid ""
 " removexattr xattr path\n"
@@ -28521,19 +28988,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3681
+#: ../fish/guestfish-actions.pod:3711
 msgid "See also: L</lremovexattr>, L<attr(5)>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3683
+#: ../fish/guestfish-actions.pod:3713
 msgid "resize2fs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3685
+#: ../fish/guestfish-actions.pod:3715
 #, no-wrap
 msgid ""
 " resize2fs device\n"
@@ -28542,7 +29009,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3690
+#: ../fish/guestfish-actions.pod:3720
 msgid ""
 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
@@ -28551,12 +29018,12 @@ msgid ""
 msgstr ""
 
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3696
+#: ../fish/guestfish-actions.pod:3726
 msgid "resize2fs-M"
 msgstr ""
 
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3698
+#: ../fish/guestfish-actions.pod:3728
 #, no-wrap
 msgid ""
 " resize2fs-M device\n"
@@ -28564,7 +29031,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3700
+#: ../fish/guestfish-actions.pod:3730
 msgid ""
 "This command is the same as L</resize2fs>, but the filesystem is resized to "
 "its minimum size.  This works like the C<-M> option to the C<resize2fs> "
@@ -28572,7 +29039,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3704
+#: ../fish/guestfish-actions.pod:3734
 msgid ""
 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
 "and read the C<Block size> and C<Block count> values.  These two numbers, "
@@ -28582,13 +29049,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3709
+#: ../fish/guestfish-actions.pod:3739
 msgid "resize2fs-size"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3711
+#: ../fish/guestfish-actions.pod:3741
 #, no-wrap
 msgid ""
 " resize2fs-size device size\n"
@@ -28597,7 +29064,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3713
+#: ../fish/guestfish-actions.pod:3743
 msgid ""
 "This command is the same as L</resize2fs> except that it allows you to "
 "specify the new size (in bytes) explicitly."
@@ -28605,13 +29072,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3716
+#: ../fish/guestfish-actions.pod:3746
 msgid "rm"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3718
+#: ../fish/guestfish-actions.pod:3748
 #, no-wrap
 msgid ""
 " rm path\n"
@@ -28620,13 +29087,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3722
+#: ../fish/guestfish-actions.pod:3752
 msgid "rm-rf"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3724
+#: ../fish/guestfish-actions.pod:3754
 #, no-wrap
 msgid ""
 " rm-rf path\n"
@@ -28635,13 +29102,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3730
+#: ../fish/guestfish-actions.pod:3760
 msgid "rmdir"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3732
+#: ../fish/guestfish-actions.pod:3762
 #, no-wrap
 msgid ""
 " rmdir path\n"
@@ -28650,13 +29117,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3736
+#: ../fish/guestfish-actions.pod:3766
 msgid "rmmountpoint"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3738
+#: ../fish/guestfish-actions.pod:3768
 #, no-wrap
 msgid ""
 " rmmountpoint exemptpath\n"
@@ -28665,7 +29132,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3740
+#: ../fish/guestfish-actions.pod:3770
 msgid ""
 "This calls removes a mountpoint that was previously created with L</"
 "mkmountpoint>.  See L</mkmountpoint> for full details."
@@ -28673,13 +29140,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3744
+#: ../fish/guestfish-actions.pod:3774
 msgid "scrub-device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3746
+#: ../fish/guestfish-actions.pod:3776
 #, no-wrap
 msgid ""
 " scrub-device device\n"
@@ -28688,13 +29155,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3757
+#: ../fish/guestfish-actions.pod:3787
 msgid "scrub-file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3759
+#: ../fish/guestfish-actions.pod:3789
 #, no-wrap
 msgid ""
 " scrub-file file\n"
@@ -28703,13 +29170,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3769
+#: ../fish/guestfish-actions.pod:3799
 msgid "scrub-freespace"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3771
+#: ../fish/guestfish-actions.pod:3801
 #, no-wrap
 msgid ""
 " scrub-freespace dir\n"
@@ -28718,7 +29185,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3773
+#: ../fish/guestfish-actions.pod:3803
 msgid ""
 "This command creates the directory C<dir> and then fills it with files until "
 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
@@ -28728,19 +29195,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3782
+#: ../fish/guestfish-actions.pod:3812
 msgid "set-append"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3784
+#: ../fish/guestfish-actions.pod:3814
 msgid "append"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3786
+#: ../fish/guestfish-actions.pod:3816
 #, no-wrap
 msgid ""
 " set-append append\n"
@@ -28748,17 +29215,17 @@ msgid ""
 msgstr ""
 
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3797
+#: ../fish/guestfish-actions.pod:3827
 msgid "set-attach-method"
 msgstr ""
 
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3799
+#: ../fish/guestfish-actions.pod:3829
 msgid "attach-method"
 msgstr ""
 
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3801
+#: ../fish/guestfish-actions.pod:3831
 #, no-wrap
 msgid ""
 " set-attach-method attachmethod\n"
@@ -28767,19 +29234,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3823
+#: ../fish/guestfish-actions.pod:3853
 msgid "set-autosync"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3825
+#: ../fish/guestfish-actions.pod:3855
 msgid "autosync"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3827
+#: ../fish/guestfish-actions.pod:3857
 #, no-wrap
 msgid ""
 " set-autosync true|false\n"
@@ -28788,19 +29255,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3837
+#: ../fish/guestfish-actions.pod:3867
 msgid "set-direct"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3839
+#: ../fish/guestfish-actions.pod:3869
 msgid "direct"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3841
+#: ../fish/guestfish-actions.pod:3871
 #, no-wrap
 msgid ""
 " set-direct true|false\n"
@@ -28809,7 +29276,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3847
+#: ../fish/guestfish-actions.pod:3877
 msgid ""
 "One consequence of this is that log messages aren't caught by the library "
 "and handled by L</set-log-message-callback>, but go straight to stdout."
@@ -28817,13 +29284,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3856
+#: ../fish/guestfish-actions.pod:3886
 msgid "set-e2label"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3858
+#: ../fish/guestfish-actions.pod:3888
 #, no-wrap
 msgid ""
 " set-e2label device label\n"
@@ -28832,7 +29299,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3864
+#: ../fish/guestfish-actions.pod:3894
 msgid ""
 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
 "label on a filesystem."
@@ -28840,13 +29307,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3867
+#: ../fish/guestfish-actions.pod:3897
 msgid "set-e2uuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3869
+#: ../fish/guestfish-actions.pod:3899
 #, no-wrap
 msgid ""
 " set-e2uuid device uuid\n"
@@ -28855,7 +29322,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3876
+#: ../fish/guestfish-actions.pod:3906
 msgid ""
 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
 "UUID of a filesystem."
@@ -28863,19 +29330,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3879
+#: ../fish/guestfish-actions.pod:3909
 msgid "set-memsize"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3881
+#: ../fish/guestfish-actions.pod:3911
 msgid "memsize"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3883
+#: ../fish/guestfish-actions.pod:3913
 #, no-wrap
 msgid ""
 " set-memsize memsize\n"
@@ -28884,7 +29351,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3885
+#: ../fish/guestfish-actions.pod:3915
 msgid ""
 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
 "This only has any effect if called before L</launch>."
@@ -28892,19 +29359,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3896
+#: ../fish/guestfish-actions.pod:3926
 msgid "set-network"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3898
+#: ../fish/guestfish-actions.pod:3928
 msgid "network"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3900
+#: ../fish/guestfish-actions.pod:3930
 #, no-wrap
 msgid ""
 " set-network true|false\n"
@@ -28913,26 +29380,26 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3908
+#: ../fish/guestfish-actions.pod:3938
 msgid ""
 "You must call this before calling L</launch>, otherwise it has no effect."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3911
+#: ../fish/guestfish-actions.pod:3941
 msgid "set-path"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3913
+#: ../fish/guestfish-actions.pod:3943
 msgid "path"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3915
+#: ../fish/guestfish-actions.pod:3945
 #, no-wrap
 msgid ""
 " set-path searchpath\n"
@@ -28941,19 +29408,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3924
+#: ../fish/guestfish-actions.pod:3954
 msgid "set-qemu"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3926
+#: ../fish/guestfish-actions.pod:3956
 msgid "qemu"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3928
+#: ../fish/guestfish-actions.pod:3958
 #, no-wrap
 msgid ""
 " set-qemu qemu\n"
@@ -28962,19 +29429,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3948
+#: ../fish/guestfish-actions.pod:3978
 msgid "set-recovery-proc"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3950
+#: ../fish/guestfish-actions.pod:3980
 msgid "recovery-proc"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3952
+#: ../fish/guestfish-actions.pod:3982
 #, no-wrap
 msgid ""
 " set-recovery-proc true|false\n"
@@ -28983,7 +29450,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3954
+#: ../fish/guestfish-actions.pod:3984
 msgid ""
 "If this is called with the parameter C<false> then L</launch> does not "
 "create a recovery process.  The purpose of the recovery process is to stop "
@@ -28992,7 +29459,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:3959
+#: ../fish/guestfish-actions.pod:3989
 msgid ""
 "This only has any effect if called before L</launch>, and the default is "
 "true."
@@ -29000,19 +29467,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3968
+#: ../fish/guestfish-actions.pod:3998
 msgid "set-selinux"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3970
+#: ../fish/guestfish-actions.pod:4000
 msgid "selinux"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3972
+#: ../fish/guestfish-actions.pod:4002
 #, no-wrap
 msgid ""
 " set-selinux true|false\n"
@@ -29021,55 +29488,69 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3983
+#: ../fish/guestfish-actions.pod:4013
 msgid "set-trace"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:3985
+#: ../fish/guestfish-actions.pod:4015
 msgid "trace"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:3987
+#: ../fish/guestfish-actions.pod:4017
 #, no-wrap
 msgid ""
 " set-trace true|false\n"
 "\n"
 msgstr ""
 
+#. type: textblock
+#: ../fish/guestfish-actions.pod:4029
+msgid ""
+"Trace messages are normally sent to C<stderr>, unless you register a "
+"callback to send them somewhere else (see L</set-event-callback>)."
+msgstr ""
+
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4003
+#: ../fish/guestfish-actions.pod:4033
 msgid "set-verbose"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4005
+#: ../fish/guestfish-actions.pod:4035
 msgid "verbose"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4007
+#: ../fish/guestfish-actions.pod:4037
 #, no-wrap
 msgid ""
 " set-verbose true|false\n"
 "\n"
 msgstr ""
 
+#. type: textblock
+#: ../fish/guestfish-actions.pod:4044
+msgid ""
+"Verbose messages are normally sent to C<stderr>, unless you register a "
+"callback to send them somewhere else (see L</set-event-callback>)."
+msgstr ""
+
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4014
+#: ../fish/guestfish-actions.pod:4048
 msgid "setcon"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4016
+#: ../fish/guestfish-actions.pod:4050
 #, no-wrap
 msgid ""
 " setcon context\n"
@@ -29078,13 +29559,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4023
+#: ../fish/guestfish-actions.pod:4057
 msgid "setxattr"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4025
+#: ../fish/guestfish-actions.pod:4059
 #, no-wrap
 msgid ""
 " setxattr xattr val vallen path\n"
@@ -29093,19 +29574,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4031
+#: ../fish/guestfish-actions.pod:4065
 msgid "See also: L</lsetxattr>, L<attr(5)>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4033
+#: ../fish/guestfish-actions.pod:4067
 msgid "sfdisk"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4035
+#: ../fish/guestfish-actions.pod:4069
 #, no-wrap
 msgid ""
 " sfdisk device cyls heads sectors 'lines ...'\n"
@@ -29114,19 +29595,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4057
+#: ../fish/guestfish-actions.pod:4091
 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4063
+#: ../fish/guestfish-actions.pod:4097
 msgid "sfdiskM"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4065
+#: ../fish/guestfish-actions.pod:4099
 #, no-wrap
 msgid ""
 " sfdiskM device 'lines ...'\n"
@@ -29135,7 +29616,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4067
+#: ../fish/guestfish-actions.pod:4101
 msgid ""
 "This is a simplified interface to the L</sfdisk> command, where partition "
 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
@@ -29145,19 +29626,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4073
+#: ../fish/guestfish-actions.pod:4107
 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4079
+#: ../fish/guestfish-actions.pod:4113
 msgid "sfdisk-N"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4081
+#: ../fish/guestfish-actions.pod:4115
 #, no-wrap
 msgid ""
 " sfdisk-N device partnum cyls heads sectors line\n"
@@ -29166,7 +29647,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4086
+#: ../fish/guestfish-actions.pod:4120
 msgid ""
 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
 "cyls/heads/sectors parameters."
@@ -29174,19 +29655,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4089
+#: ../fish/guestfish-actions.pod:4123
 msgid "See also: L</part-add>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4094
+#: ../fish/guestfish-actions.pod:4128
 msgid "sfdisk-disk-geometry"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4096
+#: ../fish/guestfish-actions.pod:4130
 #, no-wrap
 msgid ""
 " sfdisk-disk-geometry device\n"
@@ -29195,7 +29676,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4098
+#: ../fish/guestfish-actions.pod:4132
 msgid ""
 "This displays the disk geometry of C<device> read from the partition table.  "
 "Especially in the case where the underlying block device has been resized, "
@@ -29205,13 +29686,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4106
+#: ../fish/guestfish-actions.pod:4140
 msgid "sfdisk-kernel-geometry"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4108
+#: ../fish/guestfish-actions.pod:4142
 #, no-wrap
 msgid ""
 " sfdisk-kernel-geometry device\n"
@@ -29220,13 +29701,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4115
+#: ../fish/guestfish-actions.pod:4149
 msgid "sfdisk-l"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4117
+#: ../fish/guestfish-actions.pod:4151
 #, no-wrap
 msgid ""
 " sfdisk-l device\n"
@@ -29235,19 +29716,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4123
+#: ../fish/guestfish-actions.pod:4157
 msgid "See also: L</part-list>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4125
+#: ../fish/guestfish-actions.pod:4159
 msgid "sh"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4127
+#: ../fish/guestfish-actions.pod:4161
 #, no-wrap
 msgid ""
 " sh command\n"
@@ -29256,25 +29737,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4132
+#: ../fish/guestfish-actions.pod:4166
 msgid "This is like L</command>, but passes the command to:"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4140
+#: ../fish/guestfish-actions.pod:4174
 msgid "All the provisos about L</command> apply to this call."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4142
+#: ../fish/guestfish-actions.pod:4176
 msgid "sh-lines"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4144
+#: ../fish/guestfish-actions.pod:4178
 #, no-wrap
 msgid ""
 " sh-lines command\n"
@@ -29283,25 +29764,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4146
+#: ../fish/guestfish-actions.pod:4180
 msgid "This is the same as L</sh>, but splits the result into a list of lines."
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4149
+#: ../fish/guestfish-actions.pod:4183
 msgid "See also: L</command-lines>"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4151
+#: ../fish/guestfish-actions.pod:4185
 msgid "sleep"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4153
+#: ../fish/guestfish-actions.pod:4187
 #, no-wrap
 msgid ""
 " sleep secs\n"
@@ -29310,13 +29791,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4157
+#: ../fish/guestfish-actions.pod:4191
 msgid "stat"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4159
+#: ../fish/guestfish-actions.pod:4193
 #, no-wrap
 msgid ""
 " stat path\n"
@@ -29325,13 +29806,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4165
+#: ../fish/guestfish-actions.pod:4199
 msgid "statvfs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4167
+#: ../fish/guestfish-actions.pod:4201
 #, no-wrap
 msgid ""
 " statvfs path\n"
@@ -29340,13 +29821,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4175
+#: ../fish/guestfish-actions.pod:4209
 msgid "strings"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4177
+#: ../fish/guestfish-actions.pod:4211
 #, no-wrap
 msgid ""
 " strings path\n"
@@ -29355,13 +29836,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4185
+#: ../fish/guestfish-actions.pod:4219
 msgid "strings-e"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4187
+#: ../fish/guestfish-actions.pod:4221
 #, no-wrap
 msgid ""
 " strings-e encoding path\n"
@@ -29370,7 +29851,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4189
+#: ../fish/guestfish-actions.pod:4223
 msgid ""
 "This is like the L</strings> command, but allows you to specify the encoding "
 "of strings that are looked for in the source file C<path>."
@@ -29378,7 +29859,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4199
+#: ../fish/guestfish-actions.pod:4233
 msgid ""
 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
 "ISO-8859-X (this is what L</strings> uses)."
@@ -29386,13 +29867,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4231
+#: ../fish/guestfish-actions.pod:4265
 msgid "swapoff-device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4233
+#: ../fish/guestfish-actions.pod:4267
 #, no-wrap
 msgid ""
 " swapoff-device device\n"
@@ -29401,7 +29882,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4235
+#: ../fish/guestfish-actions.pod:4269
 msgid ""
 "This command disables the libguestfs appliance swap device or partition "
 "named C<device>.  See L</swapon-device>."
@@ -29409,13 +29890,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4239
+#: ../fish/guestfish-actions.pod:4273
 msgid "swapoff-file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4241
+#: ../fish/guestfish-actions.pod:4275
 #, no-wrap
 msgid ""
 " swapoff-file file\n"
@@ -29424,13 +29905,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4245
+#: ../fish/guestfish-actions.pod:4279
 msgid "swapoff-label"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4247
+#: ../fish/guestfish-actions.pod:4281
 #, no-wrap
 msgid ""
 " swapoff-label label\n"
@@ -29439,13 +29920,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4252
+#: ../fish/guestfish-actions.pod:4286
 msgid "swapoff-uuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4254
+#: ../fish/guestfish-actions.pod:4288
 #, no-wrap
 msgid ""
 " swapoff-uuid uuid\n"
@@ -29454,13 +29935,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4259
+#: ../fish/guestfish-actions.pod:4293
 msgid "swapon-device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4261
+#: ../fish/guestfish-actions.pod:4295
 #, no-wrap
 msgid ""
 " swapon-device device\n"
@@ -29469,7 +29950,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4263
+#: ../fish/guestfish-actions.pod:4297
 msgid ""
 "This command enables the libguestfs appliance to use the swap device or "
 "partition named C<device>.  The increased memory is made available for all "
@@ -29478,13 +29959,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4275
+#: ../fish/guestfish-actions.pod:4309
 msgid "swapon-file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4277
+#: ../fish/guestfish-actions.pod:4311
 #, no-wrap
 msgid ""
 " swapon-file file\n"
@@ -29493,20 +29974,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4279
+#: ../fish/guestfish-actions.pod:4313
 msgid ""
 "This command enables swap to a file.  See L</swapon-device> for other notes."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4282
+#: ../fish/guestfish-actions.pod:4316
 msgid "swapon-label"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4284
+#: ../fish/guestfish-actions.pod:4318
 #, no-wrap
 msgid ""
 " swapon-label label\n"
@@ -29515,7 +29996,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4286
+#: ../fish/guestfish-actions.pod:4320
 msgid ""
 "This command enables swap to a labeled swap partition.  See L</swapon-"
 "device> for other notes."
@@ -29523,13 +30004,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4289
+#: ../fish/guestfish-actions.pod:4323
 msgid "swapon-uuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4291
+#: ../fish/guestfish-actions.pod:4325
 #, no-wrap
 msgid ""
 " swapon-uuid uuid\n"
@@ -29538,7 +30019,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4293
+#: ../fish/guestfish-actions.pod:4327
 msgid ""
 "This command enables swap to a swap partition with the given UUID.  See L</"
 "swapon-device> for other notes."
@@ -29546,13 +30027,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4296
+#: ../fish/guestfish-actions.pod:4330
 msgid "sync"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4298
+#: ../fish/guestfish-actions.pod:4332
 #, no-wrap
 msgid ""
 " sync\n"
@@ -29561,13 +30042,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4306
+#: ../fish/guestfish-actions.pod:4340
 msgid "tail"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4308
+#: ../fish/guestfish-actions.pod:4342
 #, no-wrap
 msgid ""
 " tail path\n"
@@ -29576,13 +30057,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4316
+#: ../fish/guestfish-actions.pod:4350
 msgid "tail-n"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4318
+#: ../fish/guestfish-actions.pod:4352
 #, no-wrap
 msgid ""
 " tail-n nrlines path\n"
@@ -29591,13 +30072,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4331
+#: ../fish/guestfish-actions.pod:4365
 msgid "tar-in"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4333
+#: ../fish/guestfish-actions.pod:4367
 #, no-wrap
 msgid ""
 " tar-in (tarfile|-) directory\n"
@@ -29606,19 +30087,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4338
+#: ../fish/guestfish-actions.pod:4372
 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4343
+#: ../fish/guestfish-actions.pod:4377
 msgid "tar-out"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4345
+#: ../fish/guestfish-actions.pod:4379
 #, no-wrap
 msgid ""
 " tar-out directory (tarfile|-)\n"
@@ -29627,19 +30108,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4350
+#: ../fish/guestfish-actions.pod:4384
 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4355
+#: ../fish/guestfish-actions.pod:4389
 msgid "tgz-in"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4357
+#: ../fish/guestfish-actions.pod:4391
 #, no-wrap
 msgid ""
 " tgz-in (tarball|-) directory\n"
@@ -29648,19 +30129,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4362
+#: ../fish/guestfish-actions.pod:4396
 msgid "To upload an uncompressed tarball, use L</tar-in>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4366
+#: ../fish/guestfish-actions.pod:4400
 msgid "tgz-out"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4368
+#: ../fish/guestfish-actions.pod:4402
 #, no-wrap
 msgid ""
 " tgz-out directory (tarball|-)\n"
@@ -29669,19 +30150,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4373
+#: ../fish/guestfish-actions.pod:4407
 msgid "To download an uncompressed tarball, use L</tar-out>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4377
+#: ../fish/guestfish-actions.pod:4411
 msgid "touch"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4379
+#: ../fish/guestfish-actions.pod:4413
 #, no-wrap
 msgid ""
 " touch path\n"
@@ -29690,13 +30171,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4388
+#: ../fish/guestfish-actions.pod:4422
 msgid "truncate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4390
+#: ../fish/guestfish-actions.pod:4424
 #, no-wrap
 msgid ""
 " truncate path\n"
@@ -29705,13 +30186,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4395
+#: ../fish/guestfish-actions.pod:4429
 msgid "truncate-size"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4397
+#: ../fish/guestfish-actions.pod:4431
 #, no-wrap
 msgid ""
 " truncate-size path size\n"
@@ -29720,7 +30201,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4402
+#: ../fish/guestfish-actions.pod:4436
 msgid ""
 "If the current file size is less than C<size> then the file is extended to "
 "the required size with zero bytes.  This creates a sparse file (ie. disk "
@@ -29730,13 +30211,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4408
+#: ../fish/guestfish-actions.pod:4442
 msgid "tune2fs-l"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4410
+#: ../fish/guestfish-actions.pod:4444
 #, no-wrap
 msgid ""
 " tune2fs-l device\n"
@@ -29745,13 +30226,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4420
+#: ../fish/guestfish-actions.pod:4454
 msgid "txz-in"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4422
+#: ../fish/guestfish-actions.pod:4456
 #, no-wrap
 msgid ""
 " txz-in (tarball|-) directory\n"
@@ -29760,13 +30241,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4429
+#: ../fish/guestfish-actions.pod:4463
 msgid "txz-out"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4431
+#: ../fish/guestfish-actions.pod:4465
 #, no-wrap
 msgid ""
 " txz-out directory (tarball|-)\n"
@@ -29775,13 +30256,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4438
+#: ../fish/guestfish-actions.pod:4472
 msgid "umask"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4440
+#: ../fish/guestfish-actions.pod:4474
 #, no-wrap
 msgid ""
 " umask mask\n"
@@ -29790,25 +30271,25 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4454
+#: ../fish/guestfish-actions.pod:4488
 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4459
+#: ../fish/guestfish-actions.pod:4493
 msgid "umount"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4461
+#: ../fish/guestfish-actions.pod:4495
 msgid "unmount"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4463
+#: ../fish/guestfish-actions.pod:4497
 #, no-wrap
 msgid ""
 " umount pathordevice\n"
@@ -29817,19 +30298,19 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4469
+#: ../fish/guestfish-actions.pod:4503
 msgid "umount-all"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4471
+#: ../fish/guestfish-actions.pod:4505
 msgid "unmount-all"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4473
+#: ../fish/guestfish-actions.pod:4507
 #, no-wrap
 msgid ""
 " umount-all\n"
@@ -29838,13 +30319,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4479
+#: ../fish/guestfish-actions.pod:4513
 msgid "upload"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4481
+#: ../fish/guestfish-actions.pod:4515
 #, no-wrap
 msgid ""
 " upload (filename|-) remotefilename\n"
@@ -29853,19 +30334,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4488
+#: ../fish/guestfish-actions.pod:4522
 msgid "See also L</download>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4492
+#: ../fish/guestfish-actions.pod:4526
 msgid "upload-offset"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4494
+#: ../fish/guestfish-actions.pod:4528
 #, no-wrap
 msgid ""
 " upload-offset (filename|-) remotefilename offset\n"
@@ -29874,7 +30355,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4506
+#: ../fish/guestfish-actions.pod:4540
 msgid ""
 "Note that there is no limit on the amount of data that can be uploaded with "
 "this call, unlike with L</pwrite>, and this call always writes the full "
@@ -29883,19 +30364,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4511
+#: ../fish/guestfish-actions.pod:4545
 msgid "See also L</upload>, L</pwrite>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4515
+#: ../fish/guestfish-actions.pod:4549
 msgid "utimens"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4517
+#: ../fish/guestfish-actions.pod:4551
 #, no-wrap
 msgid ""
 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
@@ -29904,13 +30385,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4536
+#: ../fish/guestfish-actions.pod:4570
 msgid "version"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4538
+#: ../fish/guestfish-actions.pod:4572
 #, no-wrap
 msgid ""
 " version\n"
@@ -29919,7 +30400,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4565
+#: ../fish/guestfish-actions.pod:4599
 msgid ""
 "I<Note:> Don't use this call to test for availability of features.  In "
 "enterprise distributions we backport features from later versions into "
@@ -29929,13 +30410,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4571
+#: ../fish/guestfish-actions.pod:4605
 msgid "vfs-label"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4573
+#: ../fish/guestfish-actions.pod:4607
 #, no-wrap
 msgid ""
 " vfs-label device\n"
@@ -29944,19 +30425,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4580
+#: ../fish/guestfish-actions.pod:4614
 msgid "To find a filesystem from the label, use L</findfs-label>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4582
+#: ../fish/guestfish-actions.pod:4616
 msgid "vfs-type"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4584
+#: ../fish/guestfish-actions.pod:4618
 #, no-wrap
 msgid ""
 " vfs-type device\n"
@@ -29965,13 +30446,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4594
+#: ../fish/guestfish-actions.pod:4628
 msgid "vfs-uuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4596
+#: ../fish/guestfish-actions.pod:4630
 #, no-wrap
 msgid ""
 " vfs-uuid device\n"
@@ -29980,19 +30461,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4603
+#: ../fish/guestfish-actions.pod:4637
 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4605
+#: ../fish/guestfish-actions.pod:4639
 msgid "vg-activate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4607
+#: ../fish/guestfish-actions.pod:4641
 #, no-wrap
 msgid ""
 " vg-activate true|false 'volgroups ...'\n"
@@ -30001,13 +30482,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4620
+#: ../fish/guestfish-actions.pod:4654
 msgid "vg-activate-all"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4622
+#: ../fish/guestfish-actions.pod:4656
 #, no-wrap
 msgid ""
 " vg-activate-all true|false\n"
@@ -30016,13 +30497,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4632
+#: ../fish/guestfish-actions.pod:4666
 msgid "vgcreate"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4634
+#: ../fish/guestfish-actions.pod:4668
 #, no-wrap
 msgid ""
 " vgcreate volgroup 'physvols ...'\n"
@@ -30031,13 +30512,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4639
+#: ../fish/guestfish-actions.pod:4673
 msgid "vglvuuids"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4641
+#: ../fish/guestfish-actions.pod:4675
 #, no-wrap
 msgid ""
 " vglvuuids vgname\n"
@@ -30046,7 +30527,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4646
+#: ../fish/guestfish-actions.pod:4680
 msgid ""
 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
 "logical volumes and volume groups."
@@ -30054,19 +30535,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4649
+#: ../fish/guestfish-actions.pod:4683
 msgid "See also L</vgpvuuids>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4651
+#: ../fish/guestfish-actions.pod:4685
 msgid "vgpvuuids"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4653
+#: ../fish/guestfish-actions.pod:4687
 #, no-wrap
 msgid ""
 " vgpvuuids vgname\n"
@@ -30075,7 +30556,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4658
+#: ../fish/guestfish-actions.pod:4692
 msgid ""
 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
 "physical volumes and volume groups."
@@ -30083,19 +30564,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4661
+#: ../fish/guestfish-actions.pod:4695
 msgid "See also L</vglvuuids>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4663
+#: ../fish/guestfish-actions.pod:4697
 msgid "vgremove"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4665
+#: ../fish/guestfish-actions.pod:4699
 #, no-wrap
 msgid ""
 " vgremove vgname\n"
@@ -30104,13 +30585,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4672
+#: ../fish/guestfish-actions.pod:4706
 msgid "vgrename"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4674
+#: ../fish/guestfish-actions.pod:4708
 #, no-wrap
 msgid ""
 " vgrename volgroup newvolgroup\n"
@@ -30119,13 +30600,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4678
+#: ../fish/guestfish-actions.pod:4712
 msgid "vgs"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4680
+#: ../fish/guestfish-actions.pod:4714
 #, no-wrap
 msgid ""
 " vgs\n"
@@ -30134,19 +30615,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4688
+#: ../fish/guestfish-actions.pod:4722
 msgid "See also L</vgs-full>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4690
+#: ../fish/guestfish-actions.pod:4724
 msgid "vgs-full"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4692
+#: ../fish/guestfish-actions.pod:4726
 #, no-wrap
 msgid ""
 " vgs-full\n"
@@ -30155,13 +30636,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4697
+#: ../fish/guestfish-actions.pod:4731
 msgid "vgscan"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4699
+#: ../fish/guestfish-actions.pod:4733
 #, no-wrap
 msgid ""
 " vgscan\n"
@@ -30170,13 +30651,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4704
+#: ../fish/guestfish-actions.pod:4738
 msgid "vguuid"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4706
+#: ../fish/guestfish-actions.pod:4740
 #, no-wrap
 msgid ""
 " vguuid vgname\n"
@@ -30185,13 +30666,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4710
+#: ../fish/guestfish-actions.pod:4744
 msgid "wc-c"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4712
+#: ../fish/guestfish-actions.pod:4746
 #, no-wrap
 msgid ""
 " wc-c path\n"
@@ -30200,13 +30681,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4717
+#: ../fish/guestfish-actions.pod:4751
 msgid "wc-l"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4719
+#: ../fish/guestfish-actions.pod:4753
 #, no-wrap
 msgid ""
 " wc-l path\n"
@@ -30215,13 +30696,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4724
+#: ../fish/guestfish-actions.pod:4758
 msgid "wc-w"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4726
+#: ../fish/guestfish-actions.pod:4760
 #, no-wrap
 msgid ""
 " wc-w path\n"
@@ -30230,13 +30711,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4731
+#: ../fish/guestfish-actions.pod:4765
 msgid "write"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4733
+#: ../fish/guestfish-actions.pod:4767
 #, no-wrap
 msgid ""
 " write path content\n"
@@ -30245,13 +30726,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4741
+#: ../fish/guestfish-actions.pod:4775
 msgid "write-file"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4743
+#: ../fish/guestfish-actions.pod:4777
 #, no-wrap
 msgid ""
 " write-file path content size\n"
@@ -30260,13 +30741,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4766
+#: ../fish/guestfish-actions.pod:4800
 msgid "zegrep"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4768
+#: ../fish/guestfish-actions.pod:4802
 #, no-wrap
 msgid ""
 " zegrep regex path\n"
@@ -30275,13 +30756,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4776
+#: ../fish/guestfish-actions.pod:4810
 msgid "zegrepi"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4778
+#: ../fish/guestfish-actions.pod:4812
 #, no-wrap
 msgid ""
 " zegrepi regex path\n"
@@ -30290,13 +30771,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4786
+#: ../fish/guestfish-actions.pod:4820
 msgid "zero"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4788
+#: ../fish/guestfish-actions.pod:4822
 #, no-wrap
 msgid ""
 " zero device\n"
@@ -30305,19 +30786,19 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4796
+#: ../fish/guestfish-actions.pod:4830
 msgid "See also: L</zero-device>, L</scrub-device>."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4798
+#: ../fish/guestfish-actions.pod:4832
 msgid "zero-device"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4800
+#: ../fish/guestfish-actions.pod:4834
 #, no-wrap
 msgid ""
 " zero-device device\n"
@@ -30326,7 +30807,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4802
+#: ../fish/guestfish-actions.pod:4836
 msgid ""
 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
 "which just zeroes the first few blocks of a device."
@@ -30334,13 +30815,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4809
+#: ../fish/guestfish-actions.pod:4843
 msgid "zerofree"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4811
+#: ../fish/guestfish-actions.pod:4845
 #, no-wrap
 msgid ""
 " zerofree device\n"
@@ -30349,13 +30830,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4824
+#: ../fish/guestfish-actions.pod:4858
 msgid "zfgrep"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4826
+#: ../fish/guestfish-actions.pod:4860
 #, no-wrap
 msgid ""
 " zfgrep pattern path\n"
@@ -30364,13 +30845,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4834
+#: ../fish/guestfish-actions.pod:4868
 msgid "zfgrepi"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4836
+#: ../fish/guestfish-actions.pod:4870
 #, no-wrap
 msgid ""
 " zfgrepi pattern path\n"
@@ -30379,13 +30860,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4844
+#: ../fish/guestfish-actions.pod:4878
 msgid "zfile"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4846
+#: ../fish/guestfish-actions.pod:4880
 #, no-wrap
 msgid ""
 " zfile meth path\n"
@@ -30394,20 +30875,20 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../fish/guestfish-actions.pod:4853
+#: ../fish/guestfish-actions.pod:4887
 msgid ""
 "Since 1.0.63, use L</file> instead which can now process compressed files."
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4863
+#: ../fish/guestfish-actions.pod:4897
 msgid "zgrep"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4865
+#: ../fish/guestfish-actions.pod:4899
 #, no-wrap
 msgid ""
 " zgrep regex path\n"
@@ -30416,13 +30897,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../fish/guestfish-actions.pod:4873
+#: ../fish/guestfish-actions.pod:4907
 msgid "zgrepi"
 msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../fish/guestfish-actions.pod:4875
+#: ../fish/guestfish-actions.pod:4909
 #, no-wrap
 msgid ""
 " zgrepi regex path\n"
@@ -32129,8 +32610,8 @@ msgstr ""
 # type: =head2
 #. type: =head1
 #: ../tools/virt-edit.pl:343 ../tools/virt-win-reg.pl:559
-#: ../tools/virt-resize.pl:1476 ../tools/virt-list-filesystems.pl:182
-#: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:527
+#: ../tools/virt-resize.pl:1482 ../tools/virt-list-filesystems.pl:182
+#: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532
 #: ../tools/virt-list-partitions.pl:250
 msgid "SHELL QUOTING"
 msgstr ""
@@ -32138,8 +32619,8 @@ msgstr ""
 # type: textblock
 #. type: textblock
 #: ../tools/virt-edit.pl:345 ../tools/virt-win-reg.pl:567
-#: ../tools/virt-resize.pl:1478 ../tools/virt-list-filesystems.pl:184
-#: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:529
+#: ../tools/virt-resize.pl:1484 ../tools/virt-list-filesystems.pl:184
+#: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534
 #: ../tools/virt-list-partitions.pl:252
 msgid ""
 "Libvirt guest names can contain arbitrary characters, some of which have "
@@ -32159,8 +32640,8 @@ msgstr ""
 # type: =head1
 #. type: =head1
 #: ../tools/virt-edit.pl:364 ../tools/virt-win-reg.pl:598
-#: ../tools/virt-resize.pl:1504 ../tools/virt-list-filesystems.pl:202
-#: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:559
+#: ../tools/virt-resize.pl:1510 ../tools/virt-list-filesystems.pl:202
+#: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
 #: ../tools/virt-list-partitions.pl:269
 msgid "AUTHOR"
 msgstr ""
@@ -32168,8 +32649,8 @@ msgstr ""
 # type: textblock
 #. type: textblock
 #: ../tools/virt-edit.pl:366 ../tools/virt-win-reg.pl:600
-#: ../tools/virt-resize.pl:1506 ../tools/virt-list-filesystems.pl:204
-#: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:561
+#: ../tools/virt-resize.pl:1512 ../tools/virt-list-filesystems.pl:204
+#: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
 #: ../tools/virt-list-partitions.pl:271
 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
 msgstr ""
@@ -32790,7 +33271,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:550
+#: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
 msgid ""
 "When reporting bugs, please enable debugging and capture the I<complete> "
 "output:"
@@ -32816,8 +33297,8 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-win-reg.pl:604 ../tools/virt-resize.pl:1510
-#: ../tools/virt-make-fs.pl:565
+#: ../tools/virt-win-reg.pl:604 ../tools/virt-resize.pl:1516
+#: ../tools/virt-make-fs.pl:570
 msgid "Copyright (C) 2010 Red Hat Inc."
 msgstr ""
 
@@ -33838,19 +34319,19 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: ../tools/virt-resize.pl:1419
+#: ../tools/virt-resize.pl:1425
 msgid "NOTES"
 msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../tools/virt-resize.pl:1421
+#: ../tools/virt-resize.pl:1427
 msgid "\"Partition 1 does not end on cylinder boundary.\""
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1423
+#: ../tools/virt-resize.pl:1429
 msgid ""
 "Virt-resize aligns partitions to multiples of 64 sectors.  Usually this "
 "means the partitions will not be aligned to the ancient CHS geometry.  "
@@ -33861,13 +34342,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../tools/virt-resize.pl:1430
+#: ../tools/virt-resize.pl:1436
 msgid "RESIZING WINDOWS VIRTUAL MACHINES"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1432
+#: ../tools/virt-resize.pl:1438
 msgid ""
 "In Windows Vista and later versions, Microsoft switched to using a separate "
 "boot partition.  In these VMs, typically C</dev/sda1> is the boot partition "
@@ -33878,7 +34359,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1439
+#: ../tools/virt-resize.pl:1445
 msgid ""
 "Windows may initiate a lengthy \"chkdsk\" on first boot after a resize, if "
 "NTFS partitions have been expanded.  This is just a safety check and (unless "
@@ -33887,13 +34368,13 @@ msgstr ""
 
 # type: =head2
 #. type: =head2
-#: ../tools/virt-resize.pl:1443
+#: ../tools/virt-resize.pl:1449
 msgid "GUEST BOOT STUCK AT \"GRUB\""
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1445
+#: ../tools/virt-resize.pl:1451
 msgid ""
 "If a Linux guest does not boot after resizing, and the boot is stuck after "
 "printing C<GRUB> on the console, try reinstalling grub.  This sometimes "
@@ -33903,7 +34384,7 @@ msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../tools/virt-resize.pl:1450
+#: ../tools/virt-resize.pl:1456
 #, no-wrap
 msgid ""
 " guestfish -i -a newdisk\n"
@@ -33917,7 +34398,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1457
+#: ../tools/virt-resize.pl:1463
 msgid ""
 "For more flexible guest reconfiguration, including if you need to specify "
 "other parameters to grub-install, use L<virt-rescue(1)>."
@@ -33925,13 +34406,13 @@ msgstr ""
 
 # type: =head1
 #. type: =head1
-#: ../tools/virt-resize.pl:1460
+#: ../tools/virt-resize.pl:1466
 msgid "ALTERNATIVE TOOLS"
 msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1462
+#: ../tools/virt-resize.pl:1468
 msgid ""
 "There are several proprietary tools for resizing partitions.  We won't "
 "mention any here."
@@ -33939,7 +34420,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1465
+#: ../tools/virt-resize.pl:1471
 msgid ""
 "L<parted(8)> and its graphical shell gparted can do some types of resizing "
 "operations on disk images.  They can resize and move partitions, but I don't "
@@ -33949,7 +34430,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1470
+#: ../tools/virt-resize.pl:1476
 msgid ""
 "L<guestfish(1)> can do everything that virt-resize can do and a lot more, "
 "but at a much lower level.  You will probably end up hand-calculating sector "
@@ -33960,7 +34441,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-resize.pl:1485
+#: ../tools/virt-resize.pl:1491
 msgid ""
 "L<virt-filesystems(1)>, L<virt-df(1)>, L<guestfs(3)>, L<guestfish(1)>, L<lvm"
 "(8)>, L<pvresize(8)>, L<lvresize(8)>, L<resize2fs(8)>, L<ntfsresize(8)>, "
@@ -34748,7 +35229,7 @@ msgid ""
 msgstr ""
 
 #. type: textblock
-#: ../tools/virt-make-fs.pl:536
+#: ../tools/virt-make-fs.pl:541
 msgid ""
 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
@@ -34757,7 +35238,7 @@ msgstr ""
 
 # type: verbatim
 #. type: verbatim
-#: ../tools/virt-make-fs.pl:553
+#: ../tools/virt-make-fs.pl:558
 #, no-wrap
 msgid ""
 " export LIBGUESTFS_DEBUG=1\n"
@@ -34767,7 +35248,7 @@ msgstr ""
 
 # type: textblock
 #. type: textblock
-#: ../tools/virt-make-fs.pl:556
+#: ../tools/virt-make-fs.pl:561
 msgid ""
 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
 "redhat.com/>"