diff options
| author | Kevin_Zheng <zhengzhenyu@huawei.com> | 2016-12-20 09:03:29 +0800 |
|---|---|---|
| committer | Kevin_Zheng <zhengzhenyu@huawei.com> | 2016-12-20 09:03:29 +0800 |
| commit | 9663424c7444e0f5ae54dda499a96f179d8512fd (patch) | |
| tree | bfcca652dcfbd5625aec723d88e5817e11ad0010 /doc/source/command-objects/container.rst | |
| parent | e51a2b3b171f3c72a715bee3ad99c0f88efa3010 (diff) | |
| download | python-openstackclient-9663424c7444e0f5ae54dda499a96f179d8512fd.tar.gz | |
change os in command example to openstack
In the current doc, the command examples are like
"os server create" but the acutal command should
be started with "openstack" instead of "os", it
is misleading to first time users.
Change-Id: Ic7686257725e1aa8e4e0d65a712eff1c079927a8
Diffstat (limited to 'doc/source/command-objects/container.rst')
| -rw-r--r-- | doc/source/command-objects/container.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/source/command-objects/container.rst b/doc/source/command-objects/container.rst index adcf0961..c4310472 100644 --- a/doc/source/command-objects/container.rst +++ b/doc/source/command-objects/container.rst @@ -12,7 +12,7 @@ Create new container .. program:: container create .. code:: bash - os container create + openstack container create <container-name> [<container-name> ...] .. describe:: <container-name> @@ -27,7 +27,7 @@ Delete container .. program:: container delete .. code:: bash - os container delete + openstack container delete [-r] | [--recursive] <container> [<container> ...] @@ -47,7 +47,7 @@ List containers .. program:: container list .. code:: bash - os container list + openstack container list [--prefix <prefix>] [--marker <marker>] [--end-marker <end-marker>] @@ -87,7 +87,7 @@ Save container contents locally .. program:: container save .. code:: bash - os container save + openstack container save <container> .. describe:: <container> @@ -102,7 +102,7 @@ Set container properties .. program:: container set .. code:: bash - os container set + openstack container set [--property <key=value> [...] ] <container> @@ -122,7 +122,7 @@ Display container details .. program:: container show .. code:: bash - os container show + openstack container show <container> .. describe:: <container> @@ -137,7 +137,7 @@ Unset container properties .. program:: container unset .. code:: bash - os container unset + openstack container unset [--property <key>] <container> |
