Disable test for RHBZ#576879 comment 5.
[libguestfs.git] / examples / hello.c
index 5f1ab0e..b3d36e6 100644 (file)
@@ -1,5 +1,12 @@
-/* Create a "/hello" file on /dev/sda1. */
-
+/* Create a "/hello" file on chosen partition.
+ * eg:
+ *   hello guest.img /dev/sda1
+ *   hello guest.img /dev/VolGroup00/LogVol00
+ */
+
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
@@ -10,22 +17,23 @@ main (int argc, char *argv[])
 {
   guestfs_h *g;
 
-  if (argc != 2 || access (argv[1], F_OK) != 0) {
-    fprintf (stderr, "Usage: hello disk-image\n");
-    exit (1);
+  if (argc != 3 || access (argv[1], F_OK) != 0) {
+    fprintf (stderr, "Usage: hello disk-image partition\n");
+    exit (EXIT_FAILURE);
   }
 
-  if (!(g = guestfs_create ())) exit (1);
+  if (!(g = guestfs_create ())) exit (EXIT_FAILURE);
 
-  guestfs_set_verbose (g, 1);
-  if (guestfs_add_drive (g, argv[1]) == -1) exit (1);
+  if (guestfs_add_drive_opts (g, argv[1],
+                              GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw",
+                              -1) == -1)
+    exit (EXIT_FAILURE);
 
-  if (guestfs_launch (g) == -1) exit (1);
-  if (guestfs_wait_ready (g) == -1) exit (1);
+  if (guestfs_launch (g) == -1) exit (EXIT_FAILURE);
 
-  if (guestfs_mount (g, "/dev/sda1", "/") == -1) exit (1);
+  if (guestfs_mount_options (g, "", argv[2], "/") == -1) exit (EXIT_FAILURE);
 
-  if (guestfs_touch (g, "/hello") == -1) exit (1);
+  if (guestfs_touch (g, "/hello") == -1) exit (EXIT_FAILURE);
 
   guestfs_sync (g);
   guestfs_close (g);