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
28b7b0f0
Commit
28b7b0f0
authored
Jul 01, 2018
by
2xsec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools: lxc-start: remove the trailing .
Signed-off-by:
2xsec
<
dh48.jeong@samsung.com
>
parent
d5202ddf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lxc_start.c
src/lxc/tools/lxc_start.c
+4
-4
No files found.
src/lxc/tools/lxc_start.c
View file @
28b7b0f0
...
@@ -275,7 +275,7 @@ int main(int argc, char *argv[])
...
@@ -275,7 +275,7 @@ int main(int argc, char *argv[])
}
}
if
(
c
->
is_running
(
c
))
{
if
(
c
->
is_running
(
c
))
{
ERROR
(
"Container is already running
.
"
);
ERROR
(
"Container is already running"
);
err
=
EXIT_SUCCESS
;
err
=
EXIT_SUCCESS
;
goto
out
;
goto
out
;
}
}
...
@@ -327,13 +327,13 @@ int main(int argc, char *argv[])
...
@@ -327,13 +327,13 @@ int main(int argc, char *argv[])
else
else
err
=
c
->
start
(
c
,
0
,
args
)
?
EXIT_SUCCESS
:
EXIT_FAILURE
;
err
=
c
->
start
(
c
,
0
,
args
)
?
EXIT_SUCCESS
:
EXIT_FAILURE
;
if
(
err
)
{
if
(
err
)
{
ERROR
(
"The container failed to start
.
"
);
ERROR
(
"The container failed to start"
);
if
(
my_args
.
daemonize
)
if
(
my_args
.
daemonize
)
ERROR
(
"To get more details, run the container in foreground mode
.
"
);
ERROR
(
"To get more details, run the container in foreground mode"
);
ERROR
(
"Additional information can be obtained by setting the "
ERROR
(
"Additional information can be obtained by setting the "
"--logfile and --logpriority options
.
"
);
"--logfile and --logpriority options"
);
err
=
c
->
error_num
;
err
=
c
->
error_num
;
lxc_container_put
(
c
);
lxc_container_put
(
c
);
...
...
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