Fix dependencies in perl so it doesn't always rebuild
[libguestfs.git] / haskell / Guestfs.hs
index 8f90ee8..ddbad46 100644 (file)
@@ -29,6 +29,7 @@ module Guestfs (
   kill_subprocess,
   add_drive,
   add_cdrom,
+  add_drive_ro,
   config,
   set_qemu,
   set_path,
@@ -81,7 +82,11 @@ module Guestfs (
   ping_daemon,
   zerofree,
   pvresize,
-  resize2fs
+  resize2fs,
+  e2fsck_f,
+  scrub_device,
+  scrub_file,
+  scrub_freespace
   ) where
 import Foreign
 import Foreign.C
@@ -191,6 +196,18 @@ add_cdrom h filename = do
       fail err
     else return ()
 
+foreign import ccall unsafe "guestfs_add_drive_ro" c_add_drive_ro
+  :: GuestfsP -> CString -> IO (CInt)
+
+add_drive_ro :: GuestfsH -> String -> IO ()
+add_drive_ro h filename = do
+  r <- withCString filename $ \filename -> withForeignPtr h (\p -> c_add_drive_ro p filename)
+  if (r == -1)
+    then do
+      err <- last_error h
+      fail err
+    else return ()
+
 foreign import ccall unsafe "guestfs_config" c_config
   :: GuestfsP -> CString -> CString -> IO (CInt)
 
@@ -827,3 +844,51 @@ resize2fs h device = do
       fail err
     else return ()
 
+foreign import ccall unsafe "guestfs_e2fsck_f" c_e2fsck_f
+  :: GuestfsP -> CString -> IO (CInt)
+
+e2fsck_f :: GuestfsH -> String -> IO ()
+e2fsck_f h device = do
+  r <- withCString device $ \device -> withForeignPtr h (\p -> c_e2fsck_f p device)
+  if (r == -1)
+    then do
+      err <- last_error h
+      fail err
+    else return ()
+
+foreign import ccall unsafe "guestfs_scrub_device" c_scrub_device
+  :: GuestfsP -> CString -> IO (CInt)
+
+scrub_device :: GuestfsH -> String -> IO ()
+scrub_device h device = do
+  r <- withCString device $ \device -> withForeignPtr h (\p -> c_scrub_device p device)
+  if (r == -1)
+    then do
+      err <- last_error h
+      fail err
+    else return ()
+
+foreign import ccall unsafe "guestfs_scrub_file" c_scrub_file
+  :: GuestfsP -> CString -> IO (CInt)
+
+scrub_file :: GuestfsH -> String -> IO ()
+scrub_file h file = do
+  r <- withCString file $ \file -> withForeignPtr h (\p -> c_scrub_file p file)
+  if (r == -1)
+    then do
+      err <- last_error h
+      fail err
+    else return ()
+
+foreign import ccall unsafe "guestfs_scrub_freespace" c_scrub_freespace
+  :: GuestfsP -> CString -> IO (CInt)
+
+scrub_freespace :: GuestfsH -> String -> IO ()
+scrub_freespace h dir = do
+  r <- withCString dir $ \dir -> withForeignPtr h (\p -> c_scrub_freespace p dir)
+  if (r == -1)
+    then do
+      err <- last_error h
+      fail err
+    else return ()
+