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
6a49f2c6
Commit
6a49f2c6
authored
Aug 12, 2016
by
Wolfgang Bumiller
Committed by
Stéphane Graber
Aug 26, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: replace tabs wth spaces in usage strings
Signed-off-by:
Wolfgang Bumiller
<
w.bumiller@proxmox.com
>
parent
6219206f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
17 deletions
+17
-17
lxc_copy.c
src/lxc/tools/lxc_copy.c
+13
-13
lxc_ls.c
src/lxc/tools/lxc_ls.c
+2
-2
lxc_snapshot.c
src/lxc/tools/lxc_snapshot.c
+1
-1
lxc_usernsexec.c
src/lxc/tools/lxc_usernsexec.c
+1
-1
No files found.
src/lxc/tools/lxc_copy.c
View file @
6a49f2c6
...
@@ -111,20 +111,20 @@ Options :\n\
...
@@ -111,20 +111,20 @@ Options :\n\
-n, --name=NAME NAME of the container
\n
\
-n, --name=NAME NAME of the container
\n
\
-N, --newname=NEWNAME NEWNAME for the restored container
\n
\
-N, --newname=NEWNAME NEWNAME for the restored container
\n
\
-p, --newpath=NEWPATH NEWPATH for the container to be stored
\n
\
-p, --newpath=NEWPATH NEWPATH for the container to be stored
\n
\
-R, --rename
rename container
\n
\
-R, --rename
rename container
\n
\
-s, --snapshot
create snapshot instead of clone
\n
\
-s, --snapshot
create snapshot instead of clone
\n
\
-F, --foreground
start with current tty attached to /dev/console
\n
\
-F, --foreground
start with current tty attached to /dev/console
\n
\
-d, --daemon
daemonize the container (default)
\n
\
-d, --daemon
daemonize the container (default)
\n
\
-e, --ephemeral
start ephemeral container
\n
\
-e, --ephemeral
start ephemeral container
\n
\
-m, --mount
directory to mount into container, either
\n
\
-m, --mount
directory to mount into container, either
\n
\
{bind,aufs,overlay}=/src-path or {bind,aufs,overlay}=/src-path:/dst-path
\n
\
{bind,aufs,overlay}=/src-path or {bind,aufs,overlay}=/src-path:/dst-path
\n
\
-B, --backingstorage=TYPE backingstorage type for the container
\n
\
-B, --backingstorage=TYPE backingstorage type for the container
\n
\
-L, --fssize
size of the new block device for block device containers
\n
\
-L, --fssize
size of the new block device for block device containers
\n
\
-D, --keedata
pass together with -e start a persistent snapshot
\n
\
-D, --keedata
pass together with -e start a persistent snapshot
\n
\
-K, --keepname
keep the hostname of the original container
\n
\
-K, --keepname
keep the hostname of the original container
\n
\
-- hook options
arguments passed to the hook program
\n
\
-- hook options
arguments passed to the hook program
\n
\
-M, --keepmac
keep the MAC address of the original container
\n
\
-M, --keepmac
keep the MAC address of the original container
\n
\
--rcfile=FILE
Load configuration file FILE
\n
"
,
--rcfile=FILE
Load configuration file FILE
\n
"
,
.
options
=
my_longopts
,
.
options
=
my_longopts
,
.
parser
=
my_parser
,
.
parser
=
my_parser
,
.
task
=
CLONE
,
.
task
=
CLONE
,
...
...
src/lxc/tools/lxc_ls.c
View file @
6a49f2c6
...
@@ -184,8 +184,8 @@ static struct lxc_arguments my_args = {
...
@@ -184,8 +184,8 @@ static struct lxc_arguments my_args = {
lxc-ls list containers
\n
\
lxc-ls list containers
\n
\
\n
\
\n
\
Options :
\n
\
Options :
\n
\
-1, --line
show one entry per line
\n
\
-1, --line
show one entry per line
\n
\
-f, --fancy
column-based output
\n
\
-f, --fancy
column-based output
\n
\
-F, --fancy-format column-based output
\n
\
-F, --fancy-format column-based output
\n
\
--active list only active containers
\n
\
--active list only active containers
\n
\
--running list only running containers
\n
\
--running list only running containers
\n
\
...
...
src/lxc/tools/lxc_snapshot.c
View file @
6a49f2c6
...
@@ -55,7 +55,7 @@ static struct lxc_arguments my_args = {
...
@@ -55,7 +55,7 @@ static struct lxc_arguments my_args = {
lxc-snapshot snapshots a container
\n
\
lxc-snapshot snapshots a container
\n
\
\n
\
\n
\
Options :
\n
\
Options :
\n
\
-n, --name=NAME
NAME of the container
\n
\
-n, --name=NAME
NAME of the container
\n
\
-L, --list list all snapshots
\n
\
-L, --list list all snapshots
\n
\
-r, --restore=NAME restore snapshot NAME, e.g. 'snap0'
\n
\
-r, --restore=NAME restore snapshot NAME, e.g. 'snap0'
\n
\
-N, --newname=NEWNAME NEWNAME for the restored container
\n
\
-N, --newname=NEWNAME NEWNAME for the restored container
\n
\
...
...
src/lxc/tools/lxc_usernsexec.c
View file @
6a49f2c6
...
@@ -59,7 +59,7 @@ static void usage(const char *name)
...
@@ -59,7 +59,7 @@ static void usage(const char *name)
{
{
printf
(
"usage: %s [-h] [-m <uid-maps>] -- [command [arg ..]]
\n
"
,
name
);
printf
(
"usage: %s [-h] [-m <uid-maps>] -- [command [arg ..]]
\n
"
,
name
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
printf
(
" -h
this message
\n
"
);
printf
(
" -h
this message
\n
"
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
printf
(
" -m <uid-maps> uid maps to use
\n
"
);
printf
(
" -m <uid-maps> uid maps to use
\n
"
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
...
...
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