Sha256: ac0631257cf54131ee9ec30b8c646b9b6edc8d1412bf607e6210364f0bf34dbe

Contents?: true

Size: 652 Bytes

Versions: 4

Compression:

Stored size: 652 Bytes

Contents

#!/usr/bin/env bash

sudo apt-get purge elasticsearch
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.7.3.deb
sudo dpkg -i elasticsearch-1.7.3.deb
sudo service elasticsearch start

if [ -n "$NOBRAINER" ]; then
  source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
  wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
  sudo apt-get update -q
  sudo apt-get install rethinkdb
  sudo cp /etc/rethinkdb/default.conf.sample /etc/rethinkdb/instances.d/instance1.conf
  sudo service rethinkdb restart
fi

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
searchkick-1.0.3 test/ci/before_install.sh
searchkick-1.0.2 test/ci/before_install.sh
searchkick-1.0.1 test/ci/before_install.sh
searchkick-1.0.0 test/ci/before_install.sh