Files
puppet-openstacklib/manifests/params.pp
Benedikt Trefzer a39a44faf9 make openstackclient package name configurable
Change-Id: Ie7d770af6d1238c3f68b7c743e8fa5255a9a5995
2018-09-10 10:33:01 +02:00

13 lines
319 B
Puppet

# == Class: openstacklib::params
#
# These parameters need to be accessed from several locations and
# should be considered to be constant
#
class openstacklib::params {
$openstackclient_package_name = $::os_package_type ? {
'debian' => 'python3-openstackclient',
default => 'python-openstackclient',
}
}