Your IP : 216.73.217.13


Current Path : /proc/thread-self/root/usr/share/elasticsearch/bin/
Upload File :
Current File : //proc/thread-self/root/usr/share/elasticsearch/bin/systemd-entrypoint

#!/bin/sh

# This wrapper script allows SystemD to feed a file containing a passphrase into
# the main Elasticsearch startup script

if [ -n "$ES_KEYSTORE_PASSPHRASE_FILE" ] ; then
  exec /usr/share/elasticsearch/bin/elasticsearch "$@" < "$ES_KEYSTORE_PASSPHRASE_FILE"
else
  exec /usr/share/elasticsearch/bin/elasticsearch "$@"
fi