Merge pull request #88 from bodepd/numpy

Add python-numpy package
This commit is contained in:
Dan Bode 2012-04-24 19:08:00 -07:00
commit 4054136d55
2 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,10 @@ class nova::vncproxy(
require git
package { 'python-numpy':
ensure => present,
}
nova_config { 'novncproxy_base_url': value => $novncproxy_base_url }
package{ "noVNC":

View File

@ -11,6 +11,8 @@ describe 'nova::vncproxy' do
{ :osfamily => 'Debian' }
end
it { should contain_package('python-numpy').with_ensure('present') }
it { should contain_nova_config('novncproxy_base_url').with(
:value => 'http://127.0.0.1:6080/vnc_auto.html'
)}