
A wrong comparison option is used to test the existence of variables. This issue block the build for cassandra image. Closes-bug: #1744501 Change-Id: I8f801c78a260bb82b78a9ce3275b264b7acd1c11
34 lines
1.3 KiB
Bash
Executable File
34 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
set -o xtrace
|
|
|
|
# Set CASSANDRA_JAVA to override which release of Java to use, defaults to 8
|
|
if [ -z "$CASSANDRA_JAVA" ]; then CASSANDRA_JAVA=8; fi
|
|
|
|
# Set CASSANDRA_RELEASE to override which casandra release to use, defaults to 311x
|
|
# For current releases supported, see http://cassandra.apache.org/download/ or
|
|
# http://dl.bintray.com/apache/cassandra/dists/
|
|
if [ -z "$CASSANDRA_RELEASE" ]; then CASSANDRA_RELEASE=311x; fi
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get --allow-unauthenticated install -qy curl
|
|
echo "deb http://www.apache.org/dist/cassandra/debian ${CASSANDRA_RELEASE} main" >> /etc/apt/sources.list.d/cassandra.sources.list
|
|
curl https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -
|
|
apt-get update
|
|
apt-get --allow-unauthenticated install -qy openjdk-${CASSANDRA_JAVA}-jdk expect python-dev
|
|
apt-get --allow-unauthenticated install -qy libxml2-dev ntp mc
|
|
apt-get --allow-unauthenticated install -qy libxslt1-dev python-pexpect
|
|
apt-get --allow-unauthenticated install -qy python-migrate build-essential
|
|
|
|
apt-get --allow-unauthenticated install -qy cassandra
|
|
|
|
# The Python Driver 2.0 for Apache Cassandra.
|
|
pip2 install cassandra-driver
|
|
# Sorted sets support for the Python driver.
|
|
pip2 install blist
|
|
|
|
service cassandra stop
|
|
rm -rf /var/lib/cassandra/data/system/*
|
|
service cassandra start
|