Skip to content

Instantly share code, notes, and snippets.

@richleland
Created December 12, 2011 16:18
Show Gist options
  • Select an option

  • Save richleland/1468071 to your computer and use it in GitHub Desktop.

Select an option

Save richleland/1468071 to your computer and use it in GitHub Desktop.
apt repo setup for postgres 9
# add the postgresql 9 apt sources
# see https://launchpad.net/~pitti/+archive/postgresql for more info
# deb http://ppa.launchpad.net/pitti/postgresql/ubuntu lucid main
# deb-src http://ppa.launchpad.net/pitti/postgresql/ubuntu lucid main
apt_repository "postgres" do
uri "http://ppa.launchpad.net/pitti/postgresql/ubuntu"
components ["main"]
distribution "natty"
keyserver "keyserver.ubuntu.com"
key "8683D8A2"
action :add
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment