mirror of https://github.com/apache/lucene.git
SOLR-11128: Escape script usage strings containing quotes
This commit is contained in:
parent
db1ad25446
commit
e5722c3f96
|
@ -301,7 +301,7 @@ New Features
|
|||
multivalued fields, a new JSON request language, and more. DocValues are now required for any field used in the analytics
|
||||
expression whereas previously docValues was not required. Please see SOLR-10123 for details. (Houston Putman)
|
||||
|
||||
* SOLR-10282: bin/solr support for enabling Kerberos authentication (Ishan Chattopadhyaya)
|
||||
* SOLR-10282: bin/solr support for enabling Kerberos authentication (Ishan Chattopadhyaya, Jason Gerlowski)
|
||||
|
||||
Bug Fixes
|
||||
----------------------
|
||||
|
|
|
@ -555,7 +555,7 @@ function print_usage() {
|
|||
echo ""
|
||||
echo "Usage: solr auth enable [-type basicAuth] -credentials user:pass [-blockUnknown <true|false>] [-updateIncludeFileOnly <true|false>]"
|
||||
echo " solr auth enable [-type basicAuth] -prompt <true|false> [-blockUnknown <true|false>] [-updateIncludeFileOnly <true|false>]"
|
||||
echo " solr auth enable -type kerberos -config "<kerberos configs>" [-updateIncludeFileOnly <true|false>]"
|
||||
echo " solr auth enable -type kerberos -config \"<kerberos configs>\" [-updateIncludeFileOnly <true|false>]"
|
||||
echo " solr auth disable [-updateIncludeFileOnly <true|false>]"
|
||||
echo ""
|
||||
echo " -type <type> The authentication mechanism (basicAuth or kerberos) to enable. Defaults to 'basicAuth'."
|
||||
|
@ -563,7 +563,7 @@ function print_usage() {
|
|||
echo " -credentials <user:pass> The username and password of the initial user. Applicable for basicAuth only."
|
||||
echo " Note: only one of -prompt or -credentials must be provided"
|
||||
echo ""
|
||||
echo " -config "<configs>" Configuration parameters (Solr startup parameters). Required and applicable only for Kerberos"
|
||||
echo " -config \"<configs>\" Configuration parameters (Solr startup parameters). Required and applicable only for Kerberos"
|
||||
echo ""
|
||||
echo " -prompt <true|false> Prompts the user to provide the credentials. Applicable for basicAuth only."
|
||||
echo " Note: only one of -prompt or -credentials must be provided"
|
||||
|
|
Loading…
Reference in New Issue