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/sys-cluster/zookeeper-bin/files/zookeeper.confd

19 lines
398 B

# JVM options
JVM_OPTS=""
# zookeeper files
MAIN="org.apache.zookeeper.server.quorum.QuorumPeerMain"
CONFIG="/opt/zookeeper-bin/conf/zoo.cfg"
# build the classpath
INSTALL_DIR=/opt/zookeeper-bin
CLASSPATH="${INSTALL_DIR}/conf:${CLASSPATH}"
for i in ${INSTALL_DIR}/zookeeper-*.jar; do
CLASSPATH="${i}:${CLASSPATH}"
done
for i in ${INSTALL_DIR}/lib/*.jar; do
CLASSPATH="${i}:${CLASSPATH}"
done