mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
370 B
13 lines
370 B
3 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
SOLR_USER=solr
|
||
|
SOLR_PASSWORD=SolrRocks
|
||
|
SOLR_HOST=localhost
|
||
|
SOLR_PORT=8983
|
||
|
|
||
|
CONFIGSET_NAME=sapl_configset
|
||
|
CONFIGSET_FILE=sapl_configset.zip
|
||
|
|
||
|
export SOLR_URL="http://$SOLR_USER:$SOLR_PASSWORD@$SOLR_HOST:$SOLR_PORT/solr/admin/configs?action=UPLOAD&name=$CONFIGSET_NAME&wt=json"
|
||
|
curl -X POST -L -F "file=@$CONFIGSET_FILE;type=application/zip" $SOLR_URL
|