Merge "Add tag to package resource"

This commit is contained in:
Jenkins 2015-07-27 15:50:21 +00:00 committed by Gerrit Code Review
commit 331fc0c867
2 changed files with 2 additions and 2 deletions

View File

@ -310,7 +310,7 @@ class horizon(
package { 'horizon':
ensure => $package_ensure,
name => $::horizon::params::package_name,
tag => 'openstack',
tag => ['openstack', 'horizon-package'],
}
concat { $::horizon::params::config_file:

View File

@ -28,7 +28,7 @@ describe 'horizon' do
is_expected.to contain_package('python-lesscpy').with_ensure('present')
is_expected.to contain_package('horizon').with(
:ensure => 'present',
:tag => 'openstack'
:tag => ['openstack', 'horizon-package'],
)
}
it { is_expected.to contain_exec('refresh_horizon_django_cache').with({