X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=python%2Fguestfs.py;h=aa3572bf835673603ea94b23af9d200e4f60ed82;hp=0f6fc3a8f4009c6b03b95ef35640c67ff2957a6f;hb=da8ddb2745c3d53c36e3ad7f09836a4c27a4d3e6;hpb=c6d6f5ae1b76ec9aa5c540906aeed73d25d13eb9 diff --git a/python/guestfs.py b/python/guestfs.py index 0f6fc3a..aa3572b 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -1856,3 +1856,25 @@ class GuestFS: """ return libguestfsmod.initrd_list (self._o, path) + def mount_loop (self, file, mountpoint): + u"""This command lets you mount "file" (a filesystem image + in a file) on a mount point. It is entirely equivalent + to the command "mount -o loop file mountpoint". + """ + 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) +