Remove unused bindir config option
Change-Id: Ie3e82e68af98f8873e00eb46dec4a0735a07d4fe
This commit is contained in:
parent
7dcc4cfea7
commit
033a325578
@ -16,7 +16,6 @@
|
||||
# under the License.
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
from oslo_config import cfg
|
||||
|
||||
@ -40,20 +39,6 @@ Possible values:
|
||||
Related options:
|
||||
|
||||
* ``state_path``
|
||||
"""),
|
||||
cfg.StrOpt('bindir',
|
||||
default=os.path.join(sys.prefix, 'local', 'bin'),
|
||||
help="""
|
||||
The directory where the Nova binaries are installed.
|
||||
|
||||
This option is only relevant if the networking capabilities from Nova are
|
||||
used (see services below). Nova's networking capabilities are targeted to
|
||||
be fully replaced by Neutron in the future. It is very unlikely that you need
|
||||
to change this option from its default value.
|
||||
|
||||
Possible values:
|
||||
|
||||
* The full path to a directory.
|
||||
"""),
|
||||
|
||||
cfg.StrOpt('state_path',
|
||||
@ -80,11 +65,6 @@ def basedir_def(*args):
|
||||
return os.path.join('$pybasedir', *args)
|
||||
|
||||
|
||||
def bindir_def(*args):
|
||||
"""Return an uninterpolated path relative to $bindir."""
|
||||
return os.path.join('$bindir', *args)
|
||||
|
||||
|
||||
def state_path_def(*args):
|
||||
"""Return an uninterpolated path relative to $state_path."""
|
||||
return os.path.join('$state_path', *args)
|
||||
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
other:
|
||||
- |
|
||||
Remove the old config option ``bindir`` since it was used for
|
||||
*nova-network* which had been removed.
|
Loading…
Reference in New Issue
Block a user