X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=python%2Fguestfs.py;h=95156fc2d15e6ce7cd3e0246942d7dd7c8a3539a;hb=e038597ebd1e43c83a8ddde21c4f1898eb7a9a98;hp=d4cd46d9a9a0e62dc125c542eefb2c604c2d8c86;hpb=adefe14e308a0f8cf73f9c60693a3dbbded157b9;p=libguestfs.git diff --git a/python/guestfs.py b/python/guestfs.py index d4cd46d..95156fc 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -210,3 +210,21 @@ class GuestFS: def file (self, path): return libguestfsmod.file (self._o, path) + def command (self, arguments): + return libguestfsmod.command (self._o, arguments) + + def command_lines (self, arguments): + return libguestfsmod.command_lines (self._o, arguments) + + def stat (self, path): + return libguestfsmod.stat (self._o, path) + + def lstat (self, path): + return libguestfsmod.lstat (self._o, path) + + def statvfs (self, path): + return libguestfsmod.statvfs (self._o, path) + + def tune2fs_l (self, device): + return libguestfsmod.tune2fs_l (self._o, device) +