Add service entry for consoleauth service
Change-Id: Ied860c9d1d37e642eb6b553f47816df9bf9e7778 Partially-Implements: bp console-support
This commit is contained in:
parent
71602b04b7
commit
ff7d4d7e55
41
mogan/cmd/consoleauth.py
Normal file
41
mogan/cmd/consoleauth.py
Normal 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()
|
Loading…
Reference in New Issue
Block a user