Add zaqar client install support
Change-Id: I8719facdbbc397c45cec7934ba275f3de8589093
This commit is contained in:
parent
fe32e6c9ce
commit
a1de9e3357
24
manifests/client.pp
Normal file
24
manifests/client.pp
Normal file
@ -0,0 +1,24 @@
|
||||
# == Class: zaqar::client
|
||||
#
|
||||
# Installs the zaqar python library.
|
||||
#
|
||||
# === Parameters:
|
||||
#
|
||||
# [*ensure*]
|
||||
# (Optional) Ensure state for pachage.
|
||||
# Defaults to 'present'.
|
||||
#
|
||||
class zaqar::client (
|
||||
$ensure = 'present'
|
||||
) {
|
||||
|
||||
include ::zaqar::deps
|
||||
include ::zaqar::params
|
||||
|
||||
package { 'python-zaqarclient':
|
||||
ensure => $ensure,
|
||||
name => $::zaqar::params::client_package_name,
|
||||
tag => 'openstack',
|
||||
}
|
||||
|
||||
}
|
@ -5,7 +5,7 @@
|
||||
class zaqar::params {
|
||||
include ::openstacklib::defaults
|
||||
|
||||
$client_package = 'python-zaqarclient'
|
||||
$client_package_name = 'python-zaqarclient'
|
||||
|
||||
case $::osfamily {
|
||||
'RedHat': {
|
||||
|
35
spec/classes/zaqar_client_spec.rb
Normal file
35
spec/classes/zaqar_client_spec.rb
Normal file
@ -0,0 +1,35 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'zaqar::client' do
|
||||
|
||||
shared_examples_for 'zaqar client' do
|
||||
|
||||
it { is_expected.to contain_class('zaqar::deps') }
|
||||
it { is_expected.to contain_class('zaqar::params') }
|
||||
|
||||
it 'installs zaqar client package' do
|
||||
is_expected.to contain_package('python-zaqarclient').with(
|
||||
:ensure => 'present',
|
||||
:name => platform_params[:client_package_name],
|
||||
:tag => 'openstack',
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
on_supported_os({
|
||||
:supported_os => OSDefaults.get_supported_os
|
||||
}).each do |os,facts|
|
||||
context "on #{os}" do
|
||||
let (:facts) do
|
||||
facts.merge!(OSDefaults.get_facts())
|
||||
end
|
||||
|
||||
let :platform_params do
|
||||
{ :client_package_name => 'python-zaqarclient' }
|
||||
end
|
||||
|
||||
it_behaves_like 'zaqar client'
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in New Issue
Block a user