X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=python%2Fguestfs.py;h=b2c3e49a7b0f193da68920ca249420dcb0819c60;hb=ab6f429a5a5ba084bdc948c0c21b2dceeae6298d;hp=7515aa75be5d7da959d609074ece4c343c3e0bfa;hpb=79cdf81e2fb717ea4372a55170d16800cdbddf23;p=libguestfs.git diff --git a/python/guestfs.py b/python/guestfs.py index 7515aa7..b2c3e49 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -1075,3 +1075,14 @@ class GuestFS: """ return libguestfsmod.mount_vfs (self._o, options, vfstype, device, mountpoint) + def debug (self, subcmd, extraargs): + u"""The "g.debug" command exposes some internals of + "guestfsd" (the guestfs daemon) that runs inside the + qemu subprocess. + + There is no comprehensive help for this command. You + have to look at the file "daemon/debug.c" in the + libguestfs source to find out what you can do. + """ + return libguestfsmod.debug (self._o, subcmd, extraargs) +