]> git.proxmox.com Git - mirror_lxc.git/blame - test/confile.c
Added C++ compatibility, change to libtool, improve monitoring
[mirror_lxc.git] / test / confile.c
CommitLineData
5e97c3fc 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
7 * Daniel Lezcano <dlezcano at fr.ibm.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23#include <stdio.h>
24#include <unistd.h>
25#include <sys/param.h>
26#include <sys/utsname.h>
27#include <sys/types.h>
28#include <sys/socket.h>
29#include <arpa/inet.h>
30#include <netinet/in.h>
31#include <net/if.h>
32
33#include <lxc.h>
5e97c3fc 34
c2cc9f0a 35#include "../src/lxc/lxc_config.h"
5e97c3fc 36
37static void usage(const char *cmd)
38{
39 fprintf(stderr, "%s -n <name>\n", cmd);
40 _exit(1);
41}
42
43int main(int argc, char *argv[])
44{
45 char *file = NULL, *name = NULL;
46 struct lxc_conf lxc_conf;
47 int opt;
48
49 while ((opt = getopt(argc, argv, "n:f:")) != -1) {
50 switch (opt) {
51 case 'f':
52 file = optarg;
53 break;
54 case 'n':
55 name = optarg;
56 break;
57 }
58 }
59
60 if (!file || !name)
61 usage(argv[0]);
62
c2cc9f0a 63 if (lxc_config_init(&lxc_conf)) {
5e97c3fc 64 fprintf(stderr, "failed to initialize configuration structure\n");
65 return 1;
66 }
67
c2cc9f0a 68 if (lxc_config_read(file, &lxc_conf)) {
5e97c3fc 69 fprintf(stderr, "failed to read configuration\n");
70 return 1;
71 }
72
73 if (lxc_create(name, &lxc_conf)) {
74 fprintf(stderr, "failed to create <%s>\n", name);
75 return 1;
76 }
77
78 return 0;
79}