X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=python%2Fguestfs.py;h=6cf7e19e7fa9788be6f9801b03a3e28dd0b3a89a;hp=864b3619dba7043a842935291cdb380e938cd740;hb=5365ebd501850ea10d9a5b28fc6480ea34dbe16d;hpb=2a243cfbe1938d324ac6445aa2917ec3db0d8c50 diff --git a/python/guestfs.py b/python/guestfs.py index 864b361..6cf7e19 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -207,3 +207,12 @@ class GuestFS: def lvm_remove_all (self): return libguestfsmod.lvm_remove_all (self._o) + 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) +