X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=guestfs-actions.pod;h=755479fd1804c7415bad70a24fb490c437b6c068;hb=c18b48958520ada3712b9ac3954ebe1c449570cf;hp=93a9fbb7843d8128b4520f34a6700f17caa3691a;hpb=4211c7a258debd236017a19c70965bc1b3658edb;p=libguestfs.git diff --git a/guestfs-actions.pod b/guestfs-actions.pod index 93a9fbb..755479f 100644 --- a/guestfs-actions.pod +++ b/guestfs-actions.pod @@ -30,7 +30,7 @@ for whatever operations you want to perform (ie. read access if you just want to read the image or write access if you want to modify the image). -This is equivalent to the qemu parameter C<-drive file=filename>. +This is equivalent to the qemu parameter C<-drive file=filename,cache=off>. Note that this call checks for the existence of C. This stops you from specifying other types of drive which are supported @@ -884,6 +884,26 @@ This returns the verbose messages flag. This function returns a C truth value on success or -1 on error. +=head2 guestfs_glob_expand + + char **guestfs_glob_expand (guestfs_h *handle, + const char *pattern); + +This command searches for all the pathnames matching +C according to the wildcard expansion rules +used by the shell. + +If no paths match, then this returns an empty list +(note: not an error). + +It is just a wrapper around the C L function +with flags C. +See that manual page for more details. + +This function returns a NULL-terminated array of strings +(like L), or NULL if there was an error. +I. + =head2 guestfs_grub_install int guestfs_grub_install (guestfs_h *handle, @@ -1171,6 +1191,33 @@ as necessary. This is like the C shell command. This function returns 0 on success or -1 on error. +=head2 guestfs_mkdtemp + + char *guestfs_mkdtemp (guestfs_h *handle, + const char *template); + +This command creates a temporary directory. The +C