Files
puppet-rally/manifests/params.pp
Xingchao Yu 72f1118e95 Make class rally work
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
2016-05-22 10:25:22 +08:00

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
}