From 286803d9142a7026aaf8fb5be73f57ce7d4d5605 Mon Sep 17 00:00:00 2001 From: Chris Pick Date: Wed, 3 Jun 2015 23:16:04 -0400 Subject: 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. --- manifests/params.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'manifests') 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') -- cgit v1.2.3