summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorChris Pick <chris@chrispick.com>2015-06-03 23:16:04 -0400
committerChris Pick <chris@chrispick.com>2015-06-03 23:16:04 -0400
commit286803d9142a7026aaf8fb5be73f57ce7d4d5605 (patch)
treecaf5e3fb491c34831b815d07dad0e9bf0e5af1b2 /manifests
parent0bd0127d015ad386e26cc1c0e60188244bdbb054 (diff)
Fix Allowed-Origins on Ubuntu so that updates are actually applied
Fix the typo in the default origins parameter for Ubuntu that was causing all unattended-upgrades to be disabled on Ubuntu machines by default.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/params.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index b7ba380..d1c47d4 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -39,8 +39,8 @@ class unattended_upgrades::params {
}
'ubuntu': {
$legacy_origin = true
- $origins = ['${distro_id} {$distro_codename}-security', #lint:ignore:single_quote_string_with_variables
- '${distro_id} {$distro_codename}-updates',] #lint:ignore:single_quote_string_with_variables
+ $origins = ['${distro_id} ${distro_codename}-security', #lint:ignore:single_quote_string_with_variables
+ '${distro_id} ${distro_codename}-updates',] #lint:ignore:single_quote_string_with_variables
}
default: {
fail('Please explicitly specify unattended_upgrades::legacy_origin and unattended_upgrades::origins')