mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
a316bd8f95
Environment variable replacement now only affects matching file types. Closes #299
65 lines
1.3 KiB
Bash
65 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
args=
|
|
|
|
if [ $(ls /conf|wc -l) = 0 ]; then
|
|
cp -r $TITAN_HOME/conf/* /conf
|
|
fi
|
|
|
|
rm -f /tmp/titan.properties
|
|
|
|
if [ -n "$CASS_PORT_9160_TCP_ADDR" ]; then
|
|
|
|
shortcut=/tmp/titan.properties
|
|
cat >> /tmp/titan.properties <<END
|
|
storage.backend=cassandra
|
|
storage.hostname=$CASS_PORT_9160_TCP_ADDR
|
|
END
|
|
|
|
elif [ -n "$CASS_ADDR" ]; then
|
|
|
|
shortcut=/tmp/titan.properties
|
|
cat >> /tmp/titan.properties <<END
|
|
storage.backend=cassandra
|
|
storage.hostname=$CASS_ADDR
|
|
END
|
|
|
|
fi
|
|
|
|
|
|
esAddr=${ES_ENV_PUBLISH_AS:-${ES_PORT_9300_TCP_ADDR}}
|
|
|
|
if [ -n "$ES_CLUSTER" -o -n "$esAddr" ]; then
|
|
shortcut=/tmp/titan.properties
|
|
cat >> /tmp/titan.properties <<END
|
|
index.search.backend=elasticsearch
|
|
index.search.elasticsearch.client-only=true
|
|
END
|
|
|
|
if [ -n "$ES_CLUSTER" ]; then
|
|
cat >> /tmp/titan.properties <<END
|
|
index.search.elasticsearch.ext.cluster.name=$ES_CLUSTER
|
|
END
|
|
fi
|
|
if [ -n "$esAddr" ]; then
|
|
# strip off the port spec, if present
|
|
esAddr=$(echo $esAddr | cut -d: -f1)
|
|
cat >> /tmp/titan.properties <<END
|
|
index.search.hostname=$esAddr
|
|
END
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ -n "$shortcut" ]; then
|
|
cat > /tmp/init.groovy <<END
|
|
g = TitanFactory.open('$shortcut')
|
|
println 'The graph \'g\' was opened using $shortcut'
|
|
END
|
|
args="$args /tmp/init.groovy"
|
|
fi
|
|
|
|
# Allow a little extra time for Cassandra to be ready
|
|
sleep 1
|
|
exec $TITAN_HOME/bin/gremlin.sh $args
|