Skip to content

Instantly share code, notes, and snippets.

View waynegraham's full-sized avatar

Wayne Graham waynegraham

View GitHub Profile
@erochest
erochest / base.pp
Last active December 17, 2015 14:08
Some puppet files for setting up my personal config under a Vagrant-managed VM.
# A palate cleanser for apt.
exec { 'apt-get update':
path => ['/usr/bin'],
}
## These two use this module: https://github.com/erochest/puppet-omeka
## Use this to automate getting that set up: https://github.com/erochest/omeka-vm
class { 'omeka':
@erochest
erochest / gist:3491062
Created August 27, 2012 18:21
The unnatural thing I did to get homebrew to compile MacVim (& vim) against Python 2.7 on Mac 10.6
cd /System/Library/Frameworks/Python.frameworks/Versions
sudo mv Current Current26
sudo ln -s /usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7 Current
@erochest
erochest / Rakefile
Created September 22, 2011 15:28
Vagrant/Rake config files for setting up a GeoServer instance.
require 'etc'
require 'fileutils'
require 'vagrant'
task :default => :usage
task :usage do
puts "You forgot to tell the computer what to do; try one of these commands:"