Add service entry for consoleauth service

Change-Id: Ied860c9d1d37e642eb6b553f47816df9bf9e7778
Partially-Implements: bp console-support
This commit is contained in:
liusheng 2017-03-14 11:48:53 +08:00
parent 71602b04b7
commit ff7d4d7e55
2 changed files with 42 additions and 0 deletions

41
mogan/cmd/consoleauth.py Normal file
View File

@ -0,0 +1,41 @@
# Copyright 2017 Huawei Technologies Co.,LTD.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""
The Mogan console auth Service
"""
import sys
from oslo_config import cfg
from oslo_service import service
from mogan.common import constants
from mogan.common import service as mogan_service
CONF = cfg.CONF
def main():
# Parse config file and command line options, then start logging
mogan_service.prepare_service(sys.argv)
mgr = mogan_service.RPCService(CONF.host,
'mogan.consoleauth.manager',
'ConsoleAuthManager',
constants.MANAGER_CONSOLEAUTH_TOPIC)
launcher = service.launch(CONF, mgr)
launcher.wait()

View File

@ -44,6 +44,7 @@ console_scripts =
mogan-dbsync = mogan.cmd.dbsync:main
mogan-engine = mogan.cmd.engine:main
mogan-scheduler = mogan.cmd.scheduler:main
mogan-consoleauth = mogan.cmd.consoleauth:main
mogan.database.migration_backend =
sqlalchemy = mogan.db.sqlalchemy.migration