X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=python%2Fguestfs.py;h=678e298e9eb894271b47df740d09ae34d558bd2b;hb=15e0fd573a87488c66cb3a6f0da01f3ab5f2f6ed;hp=9cf9d8817735aecfcb3ee7617c4aae4efb9205bb;hpb=77c3f9d0ed25218fc3f24cee083a2083157d8e0a;p=libguestfs.git diff --git a/python/guestfs.py b/python/guestfs.py index 9cf9d88..678e298 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -279,6 +279,15 @@ class GuestFS: """ return libguestfsmod.set_ready (self._o) + def end_busy (self): + u"""This sets the state to "READY", or if in "CONFIG" then + it leaves the state as is. This is only used when + implementing actions using the low-level API. + + For more information on states, see guestfs(3). + """ + return libguestfsmod.end_busy (self._o) + def mount (self, device, mountpoint): u"""Mount a guest disk at a position in the filesystem. Block devices are named "/dev/sda", "/dev/sdb" and so