Created
December 12, 2011 16:18
-
-
Save richleland/1468071 to your computer and use it in GitHub Desktop.
apt repo setup for postgres 9
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
| # 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