X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=examples%2Fhello.c;h=b4d5d8c63f615dbd6a4260a2fb7082328848d00b;hp=f6c2062bc6dc0bf1b82c8ecfc31ebb270f368423;hb=c50eb8f1cc33009f1ed29a002066e026fe2923f4;hpb=3906e4ff91c208e0ae90ab8b18e69e678a9bed8e diff --git a/examples/hello.c b/examples/hello.c index f6c2062..b4d5d8c 100644 --- a/examples/hello.c +++ b/examples/hello.c @@ -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 +#endif #include #include #include @@ -10,21 +17,20 @@ 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); - if (guestfs_add_drive (g, argv[1]) == -1) exit (1); + if (guestfs_add_drive (g, argv[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 (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);