From 99d0e4d3365143ba6e7deac292945662b1fdc199 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Tue, 1 Oct 2013 18:50:56 +0000 Subject: [PATCH] Correct unattended upgrades origins assignment * modules/openstack_project/manifests/automatic_upgrades.pp: Instead of passing through the origins list from the scope, this was handing a literal empty list to the unattended_upgrades module instead. Correct it. Change-Id: I241575396167451d5b62fba36d2e96808d0d0e27 --- modules/openstack_project/manifests/automatic_upgrades.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/manifests/automatic_upgrades.pp b/modules/openstack_project/manifests/automatic_upgrades.pp index 20fb82af24..1430bfa5f6 100644 --- a/modules/openstack_project/manifests/automatic_upgrades.pp +++ b/modules/openstack_project/manifests/automatic_upgrades.pp @@ -6,7 +6,7 @@ class openstack_project::automatic_upgrades ( if $::osfamily == 'Debian' { class { 'unattended_upgrades': - origins => [], + origins => $origins, } } if $::osfamily == 'RedHat' {