X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=examples%2Fhello.c;h=a4cc43d579b45c1b15897ce5cad6d4e02459d15a;hp=5f1ab0eca6143c339368aa1584addbc9a31cb90e;hb=e02066bcb33a2aed5f23dd18c3168dc66efddb18;hpb=40ca9a57829f2e82362e391d7d998bf33c8bd671 diff --git a/examples/hello.c b/examples/hello.c index 5f1ab0e..a4cc43d 100644 --- a/examples/hello.c +++ b/examples/hello.c @@ -1,4 +1,8 @@ -/* 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 + */ #include #include @@ -10,20 +14,19 @@ main (int argc, char *argv[]) { guestfs_h *g; - if (argc != 2 || access (argv[1], F_OK) != 0) { - fprintf (stderr, "Usage: hello disk-image\n"); + if (argc != 3 || access (argv[1], F_OK) != 0) { + fprintf (stderr, "Usage: hello disk-image partition\n"); exit (1); } if (!(g = guestfs_create ())) exit (1); - guestfs_set_verbose (g, 1); if (guestfs_add_drive (g, argv[1]) == -1) exit (1); if (guestfs_launch (g) == -1) exit (1); if (guestfs_wait_ready (g) == -1) exit (1); - if (guestfs_mount (g, "/dev/sda1", "/") == -1) exit (1); + if (guestfs_mount (g, argv[2], "/") == -1) exit (1); if (guestfs_touch (g, "/hello") == -1) exit (1);