Sha256: ba2a7e52075d5cba2a9d8881636df503d7e4c7842c9c2b0c9a8e099b151f452f
Contents?: true
Size: 673 Bytes
Versions: 5
Compression:
Stored size: 673 Bytes
Contents
#!/usr/bin/env bash gem install bundler 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
5 entries across 5 versions & 1 rubygems