diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-07-07 16:45:24 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-07-07 16:51:21 +0100 |
commit | c711394fd62947853fdf15f7d4913b31c899c6b7 (patch) | |
tree | 753b0210e9c809414c1eb4be57252b4d73a10dc0 /docs/installing/manual_install.md | |
parent | 2c8bd801014825dbc3763a7c5d5ed19628379d68 (diff) |
Add wheezy repo for squeeze
Give better description of what we're getting from each repository and
suggest package pinning for wheezy.
Diffstat (limited to 'docs/installing/manual_install.md')
-rw-r--r-- | docs/installing/manual_install.md | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/docs/installing/manual_install.md b/docs/installing/manual_install.md index 7f688e813..187ba92e8 100644 --- a/docs/installing/manual_install.md +++ b/docs/installing/manual_install.md @@ -76,12 +76,24 @@ Add the following repositories to `/etc/apt/sources.list`: **Debian Squeeze** - cat > /etc/apt/sources.list.d/debian-backports.list <<EOF + cat > /etc/apt/sources.list.d/debian-extra.list <<EOF deb http://backports.debian.org/debian-backports squeeze-backports main contrib non-free + deb http://the.earth.li/debian/ wheezy main contrib non-free + EOF + +The squeeze-backports repository is providing a more recent version of rubygems, and the wheezy repository is providing bundler. You should configure package-pinning to reduce the priority of the wheezy repository so other packages aren't pulled from it. + + cat > /etc/apt/preferences <<EOF + + Package: bundler + Pin: release n=wheezy + Pin-Priority: 990 + + Package: * + Pin: release n=wheezy + Pin-Priority: 50 EOF -The repositories above let you install `wkhtmltopdf-static` and `bundler` using -`apt`. **Ubuntu Precise** |