summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2016-12-11 10:54:24 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2016-12-11 12:13:00 +0000
commitf1b7d2919da032d819f47eb9a4e5373d75cf863d (patch)
tree27e074dfebf02375c6c7c9b4efc5960cc6157fd4 /share
parentAdding CSV export format to container list command. (diff)
downloadcompute-tools-f1b7d2919da032d819f47eb9a4e5373d75cf863d.tar.xz
compute-tools-f1b7d2919da032d819f47eb9a4e5373d75cf863d.zip
Adding JSON export format to container list command.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share')
-rw-r--r--share/bash-completion/container2
-rw-r--r--share/man/container-list.1.txt5
2 files changed, 5 insertions, 2 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container
index 13bcdf3..3b0e033 100644
--- a/share/bash-completion/container
+++ b/share/bash-completion/container
@@ -139,7 +139,7 @@ _container()
;;
-f|--format)
- opts="cli csv shell"
+ opts="cli csv json shell"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;
diff --git a/share/man/container-list.1.txt b/share/man/container-list.1.txt
index 3e4498b..488b718 100644
--- a/share/man/container-list.1.txt
+++ b/share/man/container-list.1.txt
@@ -50,7 +50,7 @@ The following container options are available, defaults to *--started --stopped*
Specify custom CSV separator, defaults to ','.
*-f, --format='FORMAT'*::
- Use format to list container. Currently available formats are 'cli' (default), 'csv', or 'shell'.
+ Use format to list container. Currently available formats are 'cli' (default), 'csv', 'json', or 'shell'.
*-h, --host='HOSTNAME'*::
List only container that are enabled for automatic start on the specified hostname. Defaults to list containers of the local system only. Using 'all' shows all container regardless of any automatic start configuration.
@@ -75,6 +75,9 @@ EXAMPLES
*Create a CSV export of all started and stopped containers:*::
sudo container list -f csv
+*Create a JSON export of all started and stopped containers:*::
+ sudo container list -f json
+
*Create a shell export of all started and stopped containers:*::
sudo container list -f shell