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.
gentoo-overlay/app-misc/elasticsearch/files/elasticsearch-systemd-pre-exec

13 lines
369 B

#!/bin/sh
# CONF_FILE setting was removed
if [ ! -z "$CONF_FILE" ]; then
echo "CONF_FILE setting is no longer supported. elasticsearch.yml must be placed in the config directory and cannot be renamed."
exit 1
fi
# fails to start without keystore
if [ ! -f "${ES_PATH_CONF}/elasticsearch.keystore" ]; then
"${ES_HOME}/bin/elasticsearch-keystore" create
fi