This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# chef stuff to install elastic search | |
# based on https://www.digitalocean.com/community/articles/how-to-install-elasticsearch-on-an-ubuntu-vps | |
# install oracle java (with help from http://jamie.mccrindle.org/2013/07/installing-oracle-java-7-using-chef.html) | |
execute "add oracle java repo" do | |
command '/usr/bin/add-apt-repository -y ppa:webupd8team/java && /usr/bin/apt-get update' | |
not_if "test -x /etc/apt/sources.list.d/webupd8team-java-precise.list" | |
end | |
execute "accept-license" do |
OlderNewer