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