summaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
authorRobin Pronk <robin.pronk@nedap.com>2017-06-28 10:59:08 +0200
committerVarac <varac@leap.se>2017-10-13 14:57:23 +0200
commite1d242de5e969d7348a5aaf8a1b224593f1bfb58 (patch)
treef824d8cb7fb38006968c852c03366f1729052a62 /manifests/params.pp
parent7917df20971ebd11717a85a0f02a963a4d87fd0a (diff)
Update Debian upstream names
* Wheezy is now oldoldstable * jessie oldstable * stretch stable * Add Stretch to supported releases
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',
]
}