Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
5d42011a
Commit
5d42011a
authored
Aug 11, 2011
by
Daniel Lezcano
Committed by
Daniel Lezcano
Aug 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add container init pid with the lxc-info command
Signed-off-by:
Daniel Lezcano
<
dlezcano@fr.ibm.com
>
parent
98945759
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
9 deletions
+34
-9
lxc_info.c
src/lxc/lxc_info.c
+34
-9
No files found.
src/lxc/lxc_info.c
View file @
5d42011a
...
@@ -21,17 +21,32 @@
...
@@ -21,17 +21,32 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
*/
#include <stdio.h>
#include <stdio.h>
#include <stdbool.h>
#include <unistd.h>
#include <unistd.h>
#include <libgen.h>
#include <libgen.h>
#include <sys/types.h>
#include <sys/types.h>
#include <lxc/lxc.h>
#include <lxc/lxc.h>
#include <lxc/log.h>
#include <lxc/log.h>
#include <commands.h>
#include "arguments.h"
#include "arguments.h"
static
bool
state
;
static
bool
pid
;
static
int
my_parser
(
struct
lxc_arguments
*
args
,
int
c
,
char
*
arg
)
{
switch
(
c
)
{
case
's'
:
state
=
true
;
break
;
case
'p'
:
pid
=
true
;
break
;
}
return
0
;
}
static
const
struct
option
my_longopts
[]
=
{
static
const
struct
option
my_longopts
[]
=
{
LXC_COMMON_OPTIONS
{
"state"
,
no_argument
,
0
,
's'
},
{
"pid"
,
no_argument
,
0
,
'p'
},
LXC_COMMON_OPTIONS
,
};
};
static
struct
lxc_arguments
my_args
=
{
static
struct
lxc_arguments
my_args
=
{
...
@@ -39,18 +54,20 @@ static struct lxc_arguments my_args = {
...
@@ -39,18 +54,20 @@ static struct lxc_arguments my_args = {
.
help
=
"\
.
help
=
"\
--name=NAME
\n
\
--name=NAME
\n
\
\n
\
\n
\
lxc-info display
the state of
a container with the identifier NAME
\n
\
lxc-info display
some information about
a container with the identifier NAME
\n
\
\n
\
\n
\
Options :
\n
\
Options :
\n
\
-n, --name=NAME NAME for name of the container
\n
"
,
-n, --name=NAME NAME for name of the container
\n
\
-s, --state shows the state of the container
\n
\
-p, --pid shows the process id of the init container
\n
"
,
.
options
=
my_longopts
,
.
options
=
my_longopts
,
.
parser
=
NULL
,
.
parser
=
my_parser
,
.
checker
=
NULL
,
.
checker
=
NULL
,
};
};
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
int
ret
,
state
;
int
ret
;
ret
=
lxc_arguments_parse
(
&
my_args
,
argc
,
argv
);
ret
=
lxc_arguments_parse
(
&
my_args
,
argc
,
argv
);
if
(
ret
)
if
(
ret
)
...
@@ -60,11 +77,19 @@ int main(int argc, char *argv[])
...
@@ -60,11 +77,19 @@ int main(int argc, char *argv[])
my_args
.
progname
,
my_args
.
quiet
))
my_args
.
progname
,
my_args
.
quiet
))
return
1
;
return
1
;
state
=
lxc_getstate
(
my_args
.
name
);
if
(
!
state
&&
!
pid
)
if
(
state
<
0
)
state
=
pid
=
true
;
if
(
state
)
{
ret
=
lxc_getstate
(
my_args
.
name
);
if
(
ret
<
0
)
return
1
;
return
1
;
printf
(
"'%s' is %s
\n
"
,
my_args
.
name
,
lxc_state2str
(
state
));
printf
(
"state:%10s
\n
"
,
lxc_state2str
(
ret
));
}
if
(
pid
)
printf
(
"pid:%10d
\n
"
,
get_init_pid
(
my_args
.
name
));
return
0
;
return
0
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment