~ubuntu-branches/ubuntu/saucy/heat/saucy-updates

« back to all changes in this revision

Viewing changes to bin/heat-engine

  • Committer: Package Import Robot
  • Author(s): James Page, Chuck Short, James Page
  • Date: 2013-08-08 15:23:59 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130808152359-9jgqjp23kssvc3x9
Tags: 2013.2~b2.a186.g2b4b248-0ubuntu1
[ Chuck Short ]
* debian/patches/rename-quantumclient.patch: Dropped no longer needed. 
* debian/control: Add python-oslo.sphinx

[ James Page ]
* New upstream snapshot.
* d/watch: Updated to track releases on launchpad.
* d/control: Drop BD in pep8, no longer required.
* d/control,rules: Drop use of openstack-pkg-tools, revert use of xz
  compression for debs.
* d/control,*.config,*.templates,po: Drop use of debconf/dbconfig-common
  to configure heat.
* d/*.upstart: Add upstart configurations for Ubuntu.
* d/p/default-kombu.patch: Switch default messaging from qpid to
  kombu.
* d/p/default-sqlite.patch: Use sqlite as default database option.
* d/control: Add python-ceilometerclient to BD's.
* d/rules: Fail package build for unit test failures.
* d/*.install: Directly install configuration files to /etc/heat.
* d/control: Update VCS locations to ubuntu-server-dev branches.
* d/heat-common.{install,manpages}: Include new binaries and associated
  manpages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
from heat.openstack.common import gettextutils
38
38
 
39
 
gettextutils.install('heat')
 
39
gettextutils.install('heat', lazy=True)
40
40
 
41
41
from oslo.config import cfg
42
42
 
43
43
from heat.openstack.common import log as logging
44
44
from heat.openstack.common import service
45
45
 
46
 
from heat.common import config
47
46
from heat.db import api as db_api
48
47
from heat.rpc import api as rpc_api
49
48
 
64
63
    from heat.engine import service as engine
65
64
 
66
65
    db_api.configure()
67
 
    config.register_engine_opts()
68
66
    srv = engine.EngineService(cfg.CONF.host, rpc_api.ENGINE_TOPIC)
69
67
    launcher = service.launch(srv)
70
68
    launcher.wait()