Created
January 22, 2016 12:26
-
-
Save vdaubry/5ee920c3e6bae724a08a to your computer and use it in GitHub Desktop.
github-awards chef recipe
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
# | |
# Cookbook Name:: github-awards | |
# Recipe:: default | |
# | |
# Copyright 2016, YOUR_COMPANY_NAME | |
# | |
# All rights reserved - Do Not Redistribute | |
# | |
apt_repository "ruby" do | |
uri "http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu" | |
distribution 'trusty' | |
components ['main'] | |
key 'C3173AA6' | |
keyserver 'keyserver.ubuntu.com' | |
end | |
execute 'apt-key-update' do | |
command 'sudo apt-key update' | |
end | |
execute 'apt-update' do | |
command 'sudo apt-get update' | |
end | |
apt_package "htop tmux" | |
apt_package "software-properties-common git" | |
apt_package "ruby2.2 ruby2.2-dev build-essential zlib1g-dev libpq-dev nodejs" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment