Drop unused CONFIG_AMQP_NSS_CERTDB_PW

Usage of the parameter was removed when qpid support was removed[1].

[1] 6da346a853

Change-Id: I6f077689096c6aeb6ca5565637f092669670e40a
This commit is contained in:
Takashi Kajinami 2024-05-13 12:43:22 +09:00
parent 0c13846794
commit 749e49e535
2 changed files with 0 additions and 29 deletions

View File

@ -266,12 +266,6 @@ AMQP Config parameters
**CONFIG_AMQP_ENABLE_AUTH**
Specify 'y' to enable authentication for the AMQP service. ['y', 'n']
AMQP Config SSL parameters
--------------------------
**CONFIG_AMQP_NSS_CERTDB_PW**
Password for the NSS certificate database of the AMQP service.
AMQP Config Authentication parameters
-------------------------------------

View File

@ -91,29 +91,6 @@ def initConfig(controller):
"POST_CONDITION_MATCH": True}
controller.addGroup(group, params)
params = [
{"CMD_OPTION": "amqp-nss-certdb-pw",
"PROMPT": "Enter the password for NSS certificate database",
"OPTION_LIST": [],
"VALIDATORS": [validators.validate_not_empty],
"DEFAULT_VALUE": "PW_PLACEHOLDER",
"PROCESSORS": [processors.process_password],
"MASK_INPUT": True,
"LOOSE_VALIDATION": True,
"CONF_NAME": "CONFIG_AMQP_NSS_CERTDB_PW",
"USE_DEFAULT": False,
"NEED_CONFIRM": True,
"CONDITION": False},
]
update_params_usage(basedefs.PACKSTACK_DOC, params, sectioned=False)
group = {"GROUP_NAME": "AMQPSSL",
"DESCRIPTION": "AMQP Config SSL parameters",
"PRE_CONDITION": "CONFIG_AMQP_ENABLE_SSL",
"PRE_CONDITION_MATCH": "y",
"POST_CONDITION": False,
"POST_CONDITION_MATCH": True}
controller.addGroup(group, params)
params = [
{"CMD_OPTION": "amqp-auth-user",
"PROMPT": "Enter the user for amqp authentication",