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
This commit is contained in:
parent
63ed15c3a3
commit
99d0e4d336
@ -6,7 +6,7 @@ class openstack_project::automatic_upgrades (
|
||||
|
||||
if $::osfamily == 'Debian' {
|
||||
class { 'unattended_upgrades':
|
||||
origins => [],
|
||||
origins => $origins,
|
||||
}
|
||||
}
|
||||
if $::osfamily == 'RedHat' {
|
||||
|
Loading…
Reference in New Issue
Block a user