summaryrefslogtreecommitdiff
path: root/UPGRADING.md
diff options
context:
space:
mode:
Diffstat (limited to 'UPGRADING.md')
-rw-r--r--UPGRADING.md16
1 files changed, 9 insertions, 7 deletions
diff --git a/UPGRADING.md b/UPGRADING.md
index 1a89e30..a8f094e 100644
--- a/UPGRADING.md
+++ b/UPGRADING.md
@@ -50,11 +50,6 @@ By default, the puppetlabs module won't create any sources. To replicate the sha
repos => 'main contrib non-free',
release => "${lsbdistcodename}/updates";
- "${::lsbdistcodename}-backports":
- location => 'http://deb.debian.org/debian',
- repos => 'main contrib non-free',
- release => "${lsbdistcodename}-backports";
-
'testing':
location => 'http://deb.debian.org/debian',
repos => 'main contrib non-free',
@@ -63,8 +58,6 @@ By default, the puppetlabs module won't create any sources. To replicate the sha
apt::pin {
"${::lsbdistcodename}":
priority => 990;
- "${::lsbdistcodename}-backports":
- priority => 200;
'testing':
priority => 2;
}
@@ -72,6 +65,15 @@ By default, the puppetlabs module won't create any sources. To replicate the sha
Sadly I can't find a way to iter the next codename from the facts :(. You can either use testing instead of "the next release" or specify it manually.
+## backports
+
+The module provides a class specifically for deploying the backports repository and pin.
+
+ class { 'apt::backports':
+ pin => 200,
+ location => 'http://deb.debian.org/debian',
+ }
+
# Classes comparison
## apticron