a8649f371b353e0baf4927f7c75dfcec62c5d133
[libguestfs.git] / examples / hello.c
1 /* Create a "/hello" file on chosen partition.
2  * eg:
3  *   hello guest.img /dev/sda1
4  *   hello guest.img /dev/VolGroup00/LogVol00
5  */
6
7 #include <config.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <guestfs.h>
12
13 int
14 main (int argc, char *argv[])
15 {
16   guestfs_h *g;
17
18   if (argc != 3 || access (argv[1], F_OK) != 0) {
19     fprintf (stderr, "Usage: hello disk-image partition\n");
20     exit (1);
21   }
22
23   if (!(g = guestfs_create ())) exit (1);
24
25   if (guestfs_add_drive (g, argv[1]) == -1) exit (1);
26
27   if (guestfs_launch (g) == -1) exit (1);
28   if (guestfs_wait_ready (g) == -1) exit (1);
29
30   if (guestfs_mount (g, argv[2], "/") == -1) exit (1);
31
32   if (guestfs_touch (g, "/hello") == -1) exit (1);
33
34   guestfs_sync (g);
35   guestfs_close (g);
36   return 0;
37 }