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.
11 lines
241 B
11 lines
241 B
4 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ -z $SOLR_HOME ]]; then
|
||
|
echo 'Cannot run script! You need to setup $SOLR_HOME'
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
ZK_HOST=${ZK_HOST-'localhost:9983'}
|
||
|
|
||
|
$SOLR_HOME/bin/solr zk upconfig -n sapl_configset -d solr/sapl_configset/ -z $ZK_HOST
|