]>
git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/lxc_start.c
2 * lxc: linux Container library
4 * (C) Copyright IBM Corp. 2007, 2008
7 * Daniel Lezcano <dlezcano at fr.ibm.com>
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.
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.
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
30 #include <sys/param.h>
31 #include <sys/utsname.h>
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <arpa/inet.h>
35 #include <netinet/in.h>
40 #include "arguments.h"
42 lxc_log_define(lxc_start
, lxc
);
44 static const struct option my_longopts
[] = {
48 static struct lxc_arguments my_args
= {
49 .progname
= "lxc-start",
51 --name=NAME -- COMMAND\n\
53 lxc-start start COMMAND in specified container NAME\n\
56 -n, --name=NAME NAME for name of the container",
57 .options
= my_longopts
,
62 static int save_tty(struct termios
*tios
)
67 if (tcgetattr(0, tios
))
68 WARN("failed to get current terminal settings : %s",
74 static int restore_tty(struct termios
*tios
)
76 struct termios current_tios
;
77 void (*oldhandler
)(int);
83 if (tcgetattr(0, ¤t_tios
)) {
84 ERROR("failed to get current terminal settings : %s",
89 if (!memcmp(tios
, ¤t_tios
, sizeof(*tios
)))
93 oldhandler
= signal(SIGTTOU
, SIG_IGN
);
94 ret
= tcsetattr(0, TCSADRAIN
, tios
);
96 ERROR("failed to restore terminal attributes");
97 signal(SIGTTOU
, oldhandler
);
102 int main(int argc
, char *argv
[])
108 char *const default_args
[] = {
113 if (lxc_arguments_parse(&my_args
, argc
, argv
))
121 if (lxc_log_init(my_args
.log_file
, my_args
.log_priority
,
122 my_args
.progname
, my_args
.quiet
))
127 err
= lxc_start(my_args
.name
, args
);