Files
nova/nova/conf/ssl.py
Hieu LE 574e093c5d Config options: centralize section "ssl"
The config options of the "nova.conf" section "ssl"
now moved to the new central location "nova/conf/ssl.py".
Ssl options mainly locate at oslo.service sslutils.

Implements: blueprint centralize-config-options-newton
Change-Id: Idac61dc88ef349c14daa73e861c05b205ef168d9
2016-04-21 10:17:21 +00:00

25 lines
781 B
Python

# Copyright 2016 OpenStack Foundation
# 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.
from oslo_service import sslutils
def register_opts(conf):
sslutils.register_opts(conf)
def list_opts():
return sslutils.list_opts()