Remove trailing whitespaces in regular file
Change-Id: Iecc6fee3c8201541a42845db38874fd572fa2771
This commit is contained in:
parent
01873d08cc
commit
332f96e89b
1
AUTHORS
1
AUTHORS
@ -20,6 +20,7 @@ Eldar Nugaev <eldr@ya.ru>
|
|||||||
François Charlier <francois.charlier@enovance.com>
|
François Charlier <francois.charlier@enovance.com>
|
||||||
Gabriel Hurley <gabriel@strikeawe.com>
|
Gabriel Hurley <gabriel@strikeawe.com>
|
||||||
Gaurav Gupta <gaurav@denali-systems.com>
|
Gaurav Gupta <gaurav@denali-systems.com>
|
||||||
|
Hengqing Hu <hudayou@hotmail.com>
|
||||||
Ilya Alekseyev <ilyaalekseyev@acm.org>
|
Ilya Alekseyev <ilyaalekseyev@acm.org>
|
||||||
Jake Dahn <admin@jakedahn.com>
|
Jake Dahn <admin@jakedahn.com>
|
||||||
James E. Blair <james.blair@rackspace.com>
|
James E. Blair <james.blair@rackspace.com>
|
||||||
|
@ -12,58 +12,58 @@ Classes
|
|||||||
:members: get, list, find, findall, create, update, delete, share_ip,
|
:members: get, list, find, findall, create, update, delete, share_ip,
|
||||||
unshare_ip, reboot, rebuild, resize, confirm_resize,
|
unshare_ip, reboot, rebuild, resize, confirm_resize,
|
||||||
revert_resize
|
revert_resize
|
||||||
|
|
||||||
.. autoclass:: Server
|
.. autoclass:: Server
|
||||||
:members: update, delete, share_ip, unshare_ip, reboot, rebuild, resize,
|
:members: update, delete, share_ip, unshare_ip, reboot, rebuild, resize,
|
||||||
confirm_resize, revert_resize
|
confirm_resize, revert_resize
|
||||||
|
|
||||||
.. attribute:: id
|
.. attribute:: id
|
||||||
|
|
||||||
This server's ID.
|
This server's ID.
|
||||||
|
|
||||||
.. attribute:: name
|
.. attribute:: name
|
||||||
|
|
||||||
The name you gave the server when you booted it.
|
The name you gave the server when you booted it.
|
||||||
|
|
||||||
.. attribute:: imageId
|
.. attribute:: imageId
|
||||||
|
|
||||||
The :class:`Image` this server was booted with.
|
The :class:`Image` this server was booted with.
|
||||||
|
|
||||||
.. attribute:: flavorId
|
.. attribute:: flavorId
|
||||||
|
|
||||||
This server's current :class:`Flavor`.
|
This server's current :class:`Flavor`.
|
||||||
|
|
||||||
.. attribute:: hostId
|
.. attribute:: hostId
|
||||||
|
|
||||||
Rackspace doesn't document this value. It appears to be SHA1 hash.
|
Rackspace doesn't document this value. It appears to be SHA1 hash.
|
||||||
|
|
||||||
.. attribute:: status
|
.. attribute:: status
|
||||||
|
|
||||||
The server's status (``BOOTING``, ``ACTIVE``, etc).
|
The server's status (``BOOTING``, ``ACTIVE``, etc).
|
||||||
|
|
||||||
.. attribute:: progress
|
.. attribute:: progress
|
||||||
|
|
||||||
When booting, resizing, updating, etc., this will be set to a
|
When booting, resizing, updating, etc., this will be set to a
|
||||||
value between 0 and 100 giving a rough estimate of the progress
|
value between 0 and 100 giving a rough estimate of the progress
|
||||||
of the current operation.
|
of the current operation.
|
||||||
|
|
||||||
.. attribute:: addresses
|
.. attribute:: addresses
|
||||||
|
|
||||||
The public and private IP addresses of this server. This'll be a dict
|
The public and private IP addresses of this server. This'll be a dict
|
||||||
of the form::
|
of the form::
|
||||||
|
|
||||||
{
|
{
|
||||||
"public" : ["67.23.10.138"],
|
"public" : ["67.23.10.138"],
|
||||||
"private" : ["10.176.42.19"]
|
"private" : ["10.176.42.19"]
|
||||||
}
|
}
|
||||||
|
|
||||||
You *can* get more than one public/private IP provisioned, but not
|
You *can* get more than one public/private IP provisioned, but not
|
||||||
directly from the API; you'll need to open a support ticket.
|
directly from the API; you'll need to open a support ticket.
|
||||||
|
|
||||||
.. attribute:: metadata
|
.. attribute:: metadata
|
||||||
|
|
||||||
The metadata dict you gave when creating the server.
|
The metadata dict you gave when creating the server.
|
||||||
|
|
||||||
Constants
|
Constants
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ Release notes
|
|||||||
|
|
||||||
2.5.3 (June 15, 2011)
|
2.5.3 (June 15, 2011)
|
||||||
=====================
|
=====================
|
||||||
* ProjectID can be None for backwards compatability.
|
* ProjectID can be None for backwards compatability.
|
||||||
* README/docs updated for projectId thanks to usrleon
|
* README/docs updated for projectId thanks to usrleon
|
||||||
|
|
||||||
2.5.1 (June 10, 2011)
|
2.5.1 (June 10, 2011)
|
||||||
@ -91,9 +91,9 @@ Release notes
|
|||||||
|
|
||||||
* Added a ``--files`` option to :program:`cloudservers boot` supporting
|
* Added a ``--files`` option to :program:`cloudservers boot` supporting
|
||||||
the upload of (up to five) files at boot time.
|
the upload of (up to five) files at boot time.
|
||||||
|
|
||||||
* Added a ``--key`` option to :program:`cloudservers boot` to key the server
|
* Added a ``--key`` option to :program:`cloudservers boot` to key the server
|
||||||
with an SSH public key at boot time. This is just a shortcut for ``--files``,
|
with an SSH public key at boot time. This is just a shortcut for ``--files``,
|
||||||
but it's a useful shortcut.
|
but it's a useful shortcut.
|
||||||
|
|
||||||
* Changed the default server image to Ubuntu 10.04 LTS.
|
* Changed the default server image to Ubuntu 10.04 LTS.
|
||||||
|
@ -56,7 +56,7 @@ for arg in "$@"; do
|
|||||||
process_option $arg
|
process_option $arg
|
||||||
done
|
done
|
||||||
|
|
||||||
# If enabled, tell nose to collect coverage data
|
# If enabled, tell nose to collect coverage data
|
||||||
if [ $coverage -eq 1 ]; then
|
if [ $coverage -eq 1 ]; then
|
||||||
noseopts="$noseopts --with-coverage --cover-package=novaclient"
|
noseopts="$noseopts --with-coverage --cover-package=novaclient"
|
||||||
fi
|
fi
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
# Copyright (c) 2010-2011 Gluster, Inc. <http://www.gluster.com>
|
# Copyright (c) 2010-2011 Gluster, Inc. <http://www.gluster.com>
|
||||||
# This initial version of this file was taken from the source tree
|
# This initial version of this file was taken from the source tree
|
||||||
# of GlusterFS. It was not directly attributed, but is assumed to be
|
# of GlusterFS. It was not directly attributed, but is assumed to be
|
||||||
# Copyright (c) 2010-2011 Gluster, Inc and release GPLv3
|
# Copyright (c) 2010-2011 Gluster, Inc and release GPLv3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user