
Debian based systems (including Ubuntu and other derivatives) always use /usr/lib/python3 (and not /usr/lib/python3.x), therefore, we shouldn't use a variable ${pyver3} instead of the 3. Change-Id: I062ade8509d1e3309f90d473bb95fbeebc01cdd0
44 lines
1.7 KiB
Puppet
44 lines
1.7 KiB
Puppet
# Parameters for puppet-watcher
|
|
#
|
|
class watcher::params {
|
|
include openstacklib::defaults
|
|
|
|
$pyver3 = $::openstacklib::defaults::pyver3
|
|
|
|
$client_package_name = 'python3-watcherclient'
|
|
$group = 'watcher'
|
|
|
|
case $::osfamily {
|
|
'RedHat': {
|
|
$api_service_name = 'openstack-watcher-api'
|
|
$api_package_name = 'openstack-watcher-api'
|
|
$common_package_name = 'openstack-watcher-common'
|
|
$applier_package_name = 'openstack-watcher-applier'
|
|
$applier_service_name = 'openstack-watcher-applier'
|
|
$decision_engine_package_name = 'openstack-watcher-decision-engine'
|
|
$decision_engine_service_name = 'openstack-watcher-decision-engine'
|
|
$watcher_wsgi_script_source = "/usr/lib/python${pyver3}/site-packages/watcher/api/app.wsgi"
|
|
$watcher_wsgi_script_path = '/var/www/cgi-bin/watcher'
|
|
}
|
|
'Debian': {
|
|
$api_service_name = 'watcher-api'
|
|
$api_package_name = 'watcher-api'
|
|
$common_package_name = 'watcher-common'
|
|
$applier_package_name = 'watcher-applier'
|
|
$applier_service_name = 'watcher-applier'
|
|
$decision_engine_package_name = 'watcher-decision-engine'
|
|
$decision_engine_service_name = 'watcher-decision-engine'
|
|
if ($::os_package_type == 'debian') {
|
|
$watcher_wsgi_script_source = '/usr/share/watcher-common/app.wsgi'
|
|
} else {
|
|
$watcher_wsgi_script_source = '/usr/lib/python3/dist-packages/watcher/api/app.wsgi'
|
|
}
|
|
$watcher_wsgi_script_path = '/usr/lib/cgi-bin/watcher'
|
|
}
|
|
default: {
|
|
fail("Unsupported osfamily: ${::osfamily} operatingsystem")
|
|
}
|
|
|
|
} # Case $::osfamily
|
|
}
|