Guard #inclusion of config.h in examples.
[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 #if HAVE_CONFIG_H
8 # include <config.h>
9 #endif
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <unistd.h>
13 #include <guestfs.h>
14
15 int
16 main (int argc, char *argv[])
17 {
18   guestfs_h *g;
19
20   if (argc != 3 || access (argv[1], F_OK) != 0) {
21     fprintf (stderr, "Usage: hello disk-image partition\n");
22     exit (1);
23   }
24
25   if (!(g = guestfs_create ())) exit (1);
26
27   if (guestfs_add_drive (g, argv[1]) == -1) exit (1);
28
29   if (guestfs_launch (g) == -1) exit (1);
30   if (guestfs_wait_ready (g) == -1) exit (1);
31
32   if (guestfs_mount (g, argv[2], "/") == -1) exit (1);
33
34   if (guestfs_touch (g, "/hello") == -1) exit (1);
35
36   guestfs_sync (g);
37   guestfs_close (g);
38   return 0;
39 }