Add novaclient class

Adds a class to install the nova client
This commit is contained in:
Dan Bode 2012-04-01 14:25:41 -07:00
parent 1b5b3a3e33
commit 69d78e74c5
2 changed files with 14 additions and 0 deletions

9
manifests/client.pp Normal file
View File

@ -0,0 +1,9 @@
class nova::client(
) {
package { 'python-novaclient':
ensure => present,
}
}

View File

@ -0,0 +1,5 @@
require 'spec_helper'
describe 'nova::client' do
it { should contain_package('python-novaclient').with_ensure('present') }
end