summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/params.pp1
-rw-r--r--spec/classes/unattended_upgrades_spec.rb2
2 files changed, 3 insertions, 0 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 4451bf1..dbdb91b 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -85,6 +85,7 @@ class unattended_upgrades::params {
'xenial', 'yakkety': {
$legacy_origin = true
$origins = [
+ '${distro_id}:${distro_codename}', #lint:ignore:single_quote_string_with_variables
'${distro_id}:${distro_codename}-security', #lint:ignore:single_quote_string_with_variables
]
}
diff --git a/spec/classes/unattended_upgrades_spec.rb b/spec/classes/unattended_upgrades_spec.rb
index 747ccb1..5831da0 100644
--- a/spec/classes/unattended_upgrades_spec.rb
+++ b/spec/classes/unattended_upgrades_spec.rb
@@ -316,6 +316,7 @@ describe 'unattended_upgrades' do
).with_content(
# This is the only section that's different for Ubuntu compared to Debian
/\Unattended-Upgrade::Allowed-Origins\ {\n
+ \t"\${distro_id}\:\${distro_codename}";\n
\t"\${distro_id}\:\${distro_codename}-security";\n
};/x
)
@@ -339,6 +340,7 @@ describe 'unattended_upgrades' do
).with_content(
# This is the only section that's different for Ubuntu compared to Debian
/\Unattended-Upgrade::Allowed-Origins\ {\n
+ \t"\${distro_id}\:\${distro_codename}";\n
\t"\${distro_id}\:\${distro_codename}-security";\n
};/x
)