summaryrefslogtreecommitdiffstats
path: root/python/guestfs.py
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-06-29 20:24:47 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-06-29 20:25:20 +0100
commitda8ddb2745c3d53c36e3ad7f09836a4c27a4d3e6 (patch)
tree5555f9addd140af8cf2b40c9526d1b1837abdd7f /python/guestfs.py
parent662617ae725c5e41c24128a037060419fbe4b026 (diff)
downloadlibguestfs-da8ddb2745c3d53c36e3ad7f09836a4c27a4d3e6.tar.gz
libguestfs-da8ddb2745c3d53c36e3ad7f09836a4c27a4d3e6.tar.xz
libguestfs-da8ddb2745c3d53c36e3ad7f09836a4c27a4d3e6.zip
Generated code for the 'mkswap*' commands.
Diffstat (limited to 'python/guestfs.py')
-rw-r--r--python/guestfs.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py
index 46b02a48..aa3572bf 100644
--- a/python/guestfs.py
+++ b/python/guestfs.py
@@ -1863,3 +1863,18 @@ class GuestFS:
"""
return libguestfsmod.mount_loop (self._o, file, mountpoint)
+ def mkswap (self, device):
+ u"""Create a swap partition on "device".
+ """
+ return libguestfsmod.mkswap (self._o, device)
+
+ def mkswap_L (self, label, device):
+ u"""Create a swap partition on "device" with label "label".
+ """
+ return libguestfsmod.mkswap_L (self._o, label, device)
+
+ def mkswap_U (self, uuid, device):
+ u"""Create a swap partition on "device" with UUID "uuid".
+ """
+ return libguestfsmod.mkswap_U (self._o, uuid, device)
+