cache: don't hardcode keystone-package tag to memcached package

Do not hardcode keystone-package tag to memcached package because the
resource can already be in catalog with another tag. Keep standard
'openstack' tag.

Change-Id: I3e400a5f64b85f0d374fc02cc5e4080d19d0f2e4
This commit is contained in:
Emilien Macchi 2016-07-27 14:13:48 -04:00
parent ebce86049b
commit d028124277
2 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ define oslo::cache(
ensure_packages('python-memcache', {
ensure => present,
name => $::oslo::params::python_memcache_package_name,
tag => ['openstack', 'keystone-package'],
tag => ['openstack'],
})
}

View File

@ -89,7 +89,7 @@ describe 'oslo::cache' do
is_expected.to contain_package('python-memcache').with(
:ensure => 'present',
:name => platform_params[:python_memcache_package_name],
:tag => ['openstack', 'keystone-package'],
:tag => ['openstack'],
)
end
end