summaryrefslogtreecommitdiffstats
path: root/python/guestfs.py
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-30 18:57:07 +0100
committerRichard Jones <rjones@redhat.com>2009-04-30 18:57:07 +0100
commit0703248d233744047515418893dac05ce013a642 (patch)
treeead0b718136e64b179b9d46f3fc314cdd49f2149 /python/guestfs.py
parentc69c3695303d5a660ad093a076c2e364ae6061de (diff)
downloadlibguestfs-0703248d233744047515418893dac05ce013a642.tar.gz
libguestfs-0703248d233744047515418893dac05ce013a642.tar.xz
libguestfs-0703248d233744047515418893dac05ce013a642.zip
Add generated code for 'fsck' command.
Diffstat (limited to 'python/guestfs.py')
-rw-r--r--python/guestfs.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/python/guestfs.py b/python/guestfs.py
index 2fced28e..37dce2bf 100644
--- a/python/guestfs.py
+++ b/python/guestfs.py
@@ -1149,3 +1149,17 @@ class GuestFS:
"""
return libguestfsmod.get_e2uuid (self._o, device)
+ def fsck (self, fstype, device):
+ u"""This runs the filesystem checker (fsck) on "device"
+ which should have filesystem type "fstype".
+
+ The returned integer is the status. See fsck(8) for the
+ list of status codes from "fsck", and note that multiple
+ status codes can be summed together.
+
+ It is entirely equivalent to running "fsck -a -t fstype
+ device". Note that checking or repairing NTFS volumes is
+ not supported (by linux-ntfs).
+ """
+ return libguestfsmod.fsck (self._o, fstype, device)
+