X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=ocaml%2Fguestfs.mli;h=40d1d2a4a533c6abeac1a9759b4c41c5352aa6ec;hb=a6155ea18b3d184f74438ae157dc43c4b8b3cbe4;hp=c8b67958b7e184e6c72c293f40de258bbb92f8b7;hpb=e118c14b9552de311cbc1734e03a3226b484c1e8;p=libguestfs.git diff --git a/ocaml/guestfs.mli b/ocaml/guestfs.mli index c8b6795..40d1d2a 100644 --- a/ocaml/guestfs.mli +++ b/ocaml/guestfs.mli @@ -445,3 +445,24 @@ val zero : t -> string -> unit val grub_install : t -> string -> string -> unit (** install GRUB *) +val cp : t -> string -> string -> unit +(** copy a file *) + +val cp_a : t -> string -> string -> unit +(** copy a file or directory recursively *) + +val mv : t -> string -> string -> unit +(** move a file *) + +val drop_caches : t -> int -> unit +(** drop kernel page cache, dentries and inodes *) + +val dmesg : t -> string +(** return kernel messages *) + +val ping_daemon : t -> unit +(** ping the guest daemon *) + +val equal : t -> string -> string -> bool +(** test if two files have equal contents *) +