puppet-zaqar/manifests/params.pp
Thomas Goirand dc2cc876f5 Debian is using Python 3: Fix path to wsgi/app.py
Use /usr/lib/python3 instead of /usr/lib/python2.7

Change-Id: I79c138bb9baeefc9ed88acdae46c8699b4614884
2018-05-04 10:19:33 +02:00

39 lines
1.1 KiB
Puppet

# == Class: zaqar::params
#
# Parameters for puppet-zaqar
#
class zaqar::params {
include ::openstacklib::defaults
if ($::os_package_type == 'debian') {
$pyvers = '3'
$pyver3 = '3'
} else {
$pyvers = ''
$pyver3 = '2.7'
}
$client_package_name = "python${pyvers}-zaqarclient"
$group = 'zaqar'
case $::osfamily {
'RedHat': {
$package_name = 'openstack-zaqar'
$service_name = 'openstack-zaqar'
$zaqar_wsgi_script_source = '/usr/lib/python2.7/site-packages/zaqar/transport/wsgi/app.py'
$zaqar_wsgi_script_path = '/var/www/cgi-bin/zaqar'
}
'Debian': {
$package_name = 'zaqar-server'
$service_name = 'zaqar-server'
$zaqar_wsgi_script_source = "/usr/lib/python${pyver3}/dist-packages/zaqar/transport/wsgi/app.py"
$zaqar_wsgi_script_path = '/usr/lib/cgi-bin/zaqar'
}
default: {
fail("Unsupported osfamily: ${::osfamily} operatingsystem: \
${::operatingsystem}, module ${module_name} only support osfamily \
RedHat and Debian")
}
}
}