f76a273227
In an effort to reduce the number of stx specific code changes in the openstack core repos, this modification moves a small python scriplet into stx-upstream and adjusts the spec file to pick the file from the new location. Another scriptlet (admin.py) is no longer necessary and has been removed from the spec file. This commit does not include modification to the repo that contains the original sources, and does not require the original sources to be modified or removed. Removal of the original sources will be done separately and can only be done once this commit gets merged. Story: 2003112 Task: 23231 Change-Id: I3e86e8e952adb447e76cf970d71b5b37fccc210d Signed-off-by: Paul-Emile Element <Paul-Emile.Element@windriver.com>
22 lines
743 B
Python
22 lines
743 B
Python
# Copyright (c) 2013-2017 Wind River Systems, Inc.
|
|
#
|
|
# 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.
|
|
|
|
|
|
from keystone.server import wsgi as wsgi_server
|
|
|
|
import sys
|
|
sys.argv = sys.argv[:1]
|
|
|
|
application = wsgi_server.initialize_public_application()
|