~ubuntu-branches/ubuntu/raring/quantum/raring-proposed

« back to all changes in this revision

Viewing changes to quantum/db/migration/alembic.ini

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Yolanda Robla, James Page, Maru Newby
  • Date: 2013-01-11 09:14:35 UTC
  • mfrom: (2.1.17)
  • Revision ID: package-import@ubuntu.com-20130111091435-vaup7dwmtmajy5oe
Tags: 2013.1~g2-0ubuntu1
[ Chuck Short ]
* New upstream version. 
* debian/patches/fix-quantum-configuration.patch: Refreshed.

[ Yolanda Robla ]
* debian/quantum-l3-agent.quantum-metadata-agent.upstart: Add
  upstart configuration for Metadata Agent.
* debian/quantum-l3-agent.install: Added quantum-ns-metadata-proxy,
  quantum-metadata-agent and metadata_agent.ini.
* debian/patches/fix-quantum-configuration.patch: Update rootwrap
  configuration in metadata_agent.ini file.
* debian/changelog: Updated package version
* d/p/fix-quantum-configuration.patch: refresh patches

[ James Page ]
* d/*.install: Install entry points from bin directory instead
  of easy-install ones generated during the package build process
  (LP: #1085038).
* d/control: Drop BD on python-dev-all; its not required.
* d/rules: Install multiple upstart configurations for quantum-l3-agent.
* d/control: Tidy package descriptions.
* d/*.postrm: Drop as debhelper will generate update-rc.d calls in
  maintainer scripts if required.
* d/quantum-common.postinst: Tweak permissions setting so that /etc/quantum
  is not owned/writable by the quantum user, ensure that /etc/quantum/rootwrap*
  is owned by root:root.
* d/*agent*.postinst: Dropped as permissions now correctly set in
  quantum-common.
* d/patches/fix-quantum-configuration.patch: Re-add dropped fixes rootwrap and
  sqlite defaults for all plugins.
* d/control: Added new BD on alembic (>= 0.4.1~), version python-mock >= 1.0b1.

[ Maru Newby ]
* debian/control: Remove unnecessary openvswitch-vswitch dependency
  from quantum-plugin-openvswitch (LP: #1076747).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# A generic, single database configuration.
 
2
 
 
3
[alembic]
 
4
# path to migration scripts
 
5
script_location = %(here)s/alembic
 
6
 
 
7
# template used to generate migration files
 
8
# file_template = %%(rev)s_%%(slug)s
 
9
 
 
10
# set to 'true' to run the environment during
 
11
# the 'revision' command, regardless of autogenerate
 
12
# revision_environment = false
 
13
 
 
14
# default to an empty string because the Quantum migration cli will
 
15
# extract the correct value and set it programatically before alemic is fully
 
16
# invoked.
 
17
sqlalchemy.url =
 
18
 
 
19
# Logging configuration
 
20
[loggers]
 
21
keys = root,sqlalchemy,alembic
 
22
 
 
23
[handlers]
 
24
keys = console
 
25
 
 
26
[formatters]
 
27
keys = generic
 
28
 
 
29
[logger_root]
 
30
level = WARN
 
31
handlers = console
 
32
qualname =
 
33
 
 
34
[logger_sqlalchemy]
 
35
level = WARN
 
36
handlers =
 
37
qualname = sqlalchemy.engine
 
38
 
 
39
[logger_alembic]
 
40
level = INFO
 
41
handlers =
 
42
qualname = alembic
 
43
 
 
44
[handler_console]
 
45
class = StreamHandler
 
46
args = (sys.stderr,)
 
47
level = NOTSET
 
48
formatter = generic
 
49
 
 
50
[formatter_generic]
 
51
format = %(levelname)-5.5s [%(name)s] %(message)s
 
52
datefmt = %H:%M:%S