Skip to content

Instantly share code, notes, and snippets.

@vdaubry
Created January 22, 2016 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vdaubry/5ee920c3e6bae724a08a to your computer and use it in GitHub Desktop.
Save vdaubry/5ee920c3e6bae724a08a to your computer and use it in GitHub Desktop.
github-awards chef recipe
#
# 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