Class rally is created initially by tool, this patch aims to update related class, packages and configs: - Use package to install rally - Add rally_init_spec - include releated classes - move openstack_client_http_timeout from rally::settings to rally. Closes-Bug: #1582961 Change-Id: Ibc0b981f7114f0bb49a56f65ffdc1ce3283e63dc
20 lines
390 B
Puppet
20 lines
390 B
Puppet
# Parameters for puppet-rally
|
|
#
|
|
class rally::params {
|
|
|
|
case $::osfamily {
|
|
'RedHat': {
|
|
$sqlite_package_name = undef
|
|
$package_name = 'openstack-rally'
|
|
}
|
|
'Debian': {
|
|
$sqlite_package_name = 'python-pysqlite2'
|
|
$package_name = 'rally'
|
|
}
|
|
default: {
|
|
fail("Unsupported osfamily: ${::osfamily} operatingsystem")
|
|
}
|
|
|
|
} # Case $::osfamily
|
|
}
|