summaryrefslogtreecommitdiffstats
path: root/python/guestfs.py
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-20 00:22:02 +0100
committerRichard Jones <rjones@redhat.com>2009-04-20 00:22:02 +0100
commit170f262f0413de843af62b968f6d12c1c476ae7f (patch)
treeb9be7ae0e59f784dfdd57ef063536218ee3f0c7d /python/guestfs.py
parentd5151686d82b66c50935010fd5458be0e4386bab (diff)
downloadlibguestfs-170f262f0413de843af62b968f6d12c1c476ae7f.tar.gz
libguestfs-170f262f0413de843af62b968f6d12c1c476ae7f.tar.xz
libguestfs-170f262f0413de843af62b968f6d12c1c476ae7f.zip
Implement upload and download commands.
Diffstat (limited to 'python/guestfs.py')
-rw-r--r--python/guestfs.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py
index fd495fdb..416404b5 100644
--- a/python/guestfs.py
+++ b/python/guestfs.py
@@ -234,6 +234,22 @@ class GuestFS:
"""
return libguestfsmod.get_state (self._o)
+ def set_busy (self):
+ u"""This sets the state to "BUSY". This is only used when
+ implementing actions using the low-level API.
+
+ For more information on states, see guestfs(3).
+ """
+ return libguestfsmod.set_busy (self._o)
+
+ def set_ready (self):
+ u"""This sets the state to "READY". This is only used when
+ implementing actions using the low-level API.
+
+ For more information on states, see guestfs(3).
+ """
+ return libguestfsmod.set_ready (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