You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
# these parameters need to be accessed from several locations and
|
|
# should be considered to be constant
|
|
class glance::params {
|
|
include openstacklib::defaults
|
|
|
|
$client_package_name = 'python3-glanceclient'
|
|
|
|
$cache_cleaner_command = 'glance-cache-cleaner'
|
|
$cache_pruner_command = 'glance-cache-pruner'
|
|
$user = 'glance'
|
|
$group = 'glance'
|
|
$boto3_package_name = 'python3-boto3'
|
|
|
|
$glance_wsgi_script_source = '/usr/bin/glance-wsgi-api'
|
|
|
|
case $facts['os']['family'] {
|
|
'RedHat': {
|
|
$package_name = 'openstack-glance'
|
|
$api_package_name = undef
|
|
$api_service_name = 'openstack-glance-api'
|
|
$pyceph_package_name = 'python3-rbd'
|
|
$lock_path = '/var/lib/glance/tmp'
|
|
$glance_wsgi_script_path = '/var/www/cgi-bin/glance'
|
|
}
|
|
'Debian': {
|
|
$package_name = undef
|
|
$api_package_name = 'glance-api'
|
|
$api_service_name = 'glance-api'
|
|
$pyceph_package_name = 'python3-ceph'
|
|
$lock_path = '/var/lock/glance'
|
|
$glance_wsgi_script_path = '/usr/lib/cgi-bin/glance'
|
|
}
|
|
default: {
|
|
fail("Unsupported osfamily: ${facts['os']['family']}")
|
|
}
|
|
}
|
|
|
|
}
|