This change resolves 2 Fedora-related todo items in installing.rst.
It also cleans up a bit:
- fixes weird grammar
- fixes improper list numbering
- uses proper name for Red Hat, where space is necessary
- replaces A/B syntax with A, B
This is my first commit and I am adding myself to Authors file
on a suggestion by Brian Waldon.
Change-Id: I398ae8150d7912e0b61375a7bdc5aab1101f34bc
Fixes bug #911547
All Object type comparisons should use isinstance()
instead of comparing types directly.
Change-Id: I9ddabd5cc7333fc63790b140ee52bf995a66cc9c
This simplifies a number of Jenkins jobs which currently, other
than directory names, could be the same for all OpenStack
projects. By renaming the virtualenv directory, the redundant
Jenkins virtualenv build and copy jobs can be eliminated.
Change-Id: I7916783d863e5184bad8293c3aed5ba119e374a9
Currently the wrong directory is searched for the
glance module, requiring glance to be installed
in the default system path, for docs to be buildable.
Also the path was appended, so the default system version
which may be completely different is referenced.
This ensures that only local glance files are referenced.
Change-Id: Ia226c90bbd24d7804401a7c9e444387c78a0f542
gettext.install needs to be run on every potential entrypoint; this
resolves bug #885529 (the python standard library includes a noop
gettext library for this purpose). This is also how nova does it.
Change-Id: I4ceaa4782461ebf6d27836336f288d79ba15cf2d
Implements blueprint swift-location-credentials
When the new option is enabled the location metadata
(which may include user credentials) is encrypted
before being sent to the registry server.
Change-Id: I072e3f5c81f187435b1c156627076d5fde087af5
This just changes the value of image.id, leaving the key name alone. We also
enforce image ids provided on an image create be a uuid. Implements
blueprint uuid-image-identifiers
Change-Id: I22ba69550ccbc04a24d680748d60414d2d0f1a99
Resolves bug #828719, which can potentially cause problems depending on
what $PWD commands are executed in.
Amendment: Also update documentation accordingly.
Change-Id: Ib2ec4bb07222e51c86b7d8f8ce1dd0e6bb342a64
Fixes lp:772397
FileHandler opens the logfile at startup, keeps the stream open and
continues to log to it forever.
If logrotate decides to rotate the file, it will rename the original
file and a new file is created with the same attributes as the original
file.
The problem is that the process is still writing to the original file,
not the newly created file. Traditionally, system daemons respond to
a SIGHUP by re-opening log files and logrotate can be configured to
deliver this signal on rotation.
However, python has an elegant solution. WatchedFileHandler monitors
the inode for the specified log file name and, if that ever changes,
it re-opens the stream.
Nova already uses WatchedFileHandler to good effect. See:
https://code.launchpad.net/~soren/nova/logrotate/+merge/50292
Change-Id: I7f693f133d230d65d7c94ebf3a2ec0c8b362f993
Without this Glance loads all image into memory, then copies it one time, then writes it to temp file, and only after all this copies image to target repository.