X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=python%2Fguestfs.py;h=4a23cdbb02037788259fa031ec675b25ca7ae4db;hp=3cfc86a1e0f07bacb0641949892592743114fd25;hb=e118c14b9552de311cbc1734e03a3226b484c1e8;hpb=62df226f26bd6ac3c481a7790eb89d760d2f0386;ds=sidebyside diff --git a/python/guestfs.py b/python/guestfs.py index 3cfc86a..4a23cdb 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -1154,12 +1154,21 @@ class GuestFS: 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. + list of status codes from "fsck". - It is entirely equivalent to running "fsck -a -t fstype - device". Note that checking or repairing NTFS volumes is - not supported (by linux-ntfs). + Notes: + + * Multiple status codes can be summed together. + + * A non-zero return code can mean "success", for + example if errors have been corrected on the + filesystem. + + * Checking or repairing NTFS volumes is not supported + (by linux-ntfs). + + This command is entirely equivalent to running "fsck -a + -t fstype device". """ return libguestfsmod.fsck (self._o, fstype, device) @@ -1174,3 +1183,10 @@ class GuestFS: """ return libguestfsmod.zero (self._o, device) + def grub_install (self, root, device): + u"""This command installs GRUB (the Grand Unified + Bootloader) on "device", with the root directory being + "root". + """ + return libguestfsmod.grub_install (self._o, root, device) +