Merge "solve duplicate declaration issue for python-openstackclient"

This commit is contained in:
Jenkins 2015-08-14 13:09:41 +00:00 committed by Gerrit Code Review
commit 92912b93d4
2 changed files with 4 additions and 2 deletions

View File

@ -30,5 +30,5 @@ class glance(
}
}
ensure_resource('package', 'python-openstackclient', {'ensure' => $package_ensure})
ensure_resource('package', 'python-openstackclient', {'ensure' => $package_ensure, tag => 'openstack'})
}

View File

@ -31,7 +31,9 @@ describe 'glance' do
'mode' => '0770'
)}
it { is_expected.to contain_package('python-openstackclient') }
it { is_expected.to contain_package('python-openstackclient').with(
:tag => 'openstack'
)}
end
end