Remove require relationship on python

The python package declaration was removed in 11fe6a76, so the require
relationship between python-greenlet and the python package is no
longer needed and causes errors. The python-greenlet package will have
python as a dependency if it is not already installed, so there is no
reason to make this relationship explicit.

Change-Id: I783a3a0b1d305a491e710621acd26f55b5979a90
This commit is contained in:
Colleen Murphy
2015-03-02 11:24:17 -08:00
parent 11fe6a7699
commit bc3ce38bb1
2 changed files with 0 additions and 2 deletions

View File

@@ -384,7 +384,6 @@ class nova(
# they should be handled as package deps by the OS
package { 'python-greenlet':
ensure => present,
require => Package['python'],
}
if $install_utilities {

View File

@@ -9,7 +9,6 @@ describe 'nova' do
it 'installs packages' do
should contain_package('python-greenlet').with(
:ensure => 'present',
:require => 'Package[python]'
)
should contain_package('python-nova').with(
:ensure => 'present',