summaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/params.pp')
-rw-r--r--manifests/params.pp10
1 files changed, 7 insertions, 3 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index dbdb91b..0d205a9 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -50,14 +50,18 @@ class unattended_upgrades::params {
case $xfacts['lsbdistcodename'] {
'squeeze': {
$legacy_origin = true
- $origins = ['${distro_id} oldoldstable', #lint:ignore:single_quote_string_with_variables
- '${distro_id} ${distro_codename}-security', #lint:ignore:single_quote_string_with_variables
+ $origins = ['${distro_id} ${distro_codename}-security', #lint:ignore:single_quote_string_with_variables
'${distro_id} ${distro_codename}-lts',] #lint:ignore:single_quote_string_with_variables
}
'wheezy': {
$legacy_origin = false
$origins = [
- 'origin=Debian,archive=stable,label=Debian-Security',
+ 'origin=Debian,archive=oldoldstable,label=Debian-Security',
+ ]
+ }
+ 'jessie': {
+ $legacy_origin = false
+ $origins = [
'origin=Debian,archive=oldstable,label=Debian-Security',
]
}