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/aggregate.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/aggregate.rst')
| -rw-r--r-- | doc/source/command-objects/aggregate.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/source/command-objects/aggregate.rst b/doc/source/command-objects/aggregate.rst index 642942d4..0d2926db 100644 --- a/doc/source/command-objects/aggregate.rst +++ b/doc/source/command-objects/aggregate.rst @@ -15,7 +15,7 @@ Add host to aggregate .. program:: aggregate add host .. code:: bash - os aggregate add host + openstack aggregate add host <aggregate> <host> @@ -36,7 +36,7 @@ Create a new aggregate .. program:: aggregate create .. code:: bash - os aggregate create + openstack aggregate create [--zone <availability-zone>] [--property <key=value> [...] ] <name> @@ -61,7 +61,7 @@ Delete existing aggregate(s) .. program:: aggregate delete .. code:: bash - os aggregate delete + openstack aggregate delete <aggregate> [<aggregate> ...] .. describe:: <aggregate> @@ -76,7 +76,7 @@ List all aggregates .. program:: aggregate list .. code:: bash - os aggregate list + openstack aggregate list [--long] .. option:: --long @@ -91,7 +91,7 @@ Remove host from aggregate .. program:: aggregate remove host .. code:: bash - os aggregate remove host + openstack aggregate remove host <aggregate> <host> @@ -112,7 +112,7 @@ Set aggregate properties .. program:: aggregate set .. code:: bash - os aggregate set + openstack aggregate set [--name <new-name>] [--zone <availability-zone>] [--property <key=value> [...] ] @@ -151,7 +151,7 @@ Display aggregate details .. program:: aggregate show .. code:: bash - os aggregate show + openstack aggregate show <aggregate> .. describe:: <aggregate> @@ -166,7 +166,7 @@ Unset aggregate properties .. program:: aggregate unset .. code-block:: bash - os aggregate unset + openstack aggregate unset [--property <key> [...] ] <aggregate> |
