Project

General

Profile

Download (958 Bytes) Statistics
| Branch: | Tag: | Revision:
# Candlepin params
class candlepin::params {

$tomcat = $::osfamily ? {
/^(RedHat|Linux)/ => $::operatingsystem ? {
'Fedora' => 'tomcat',
default => $::operatingsystemrelease ? {
/^7\./ => 'tomcat',
default => 'tomcat6'
}
}
}

$db_user = 'candlepin'
$db_name = 'candlepin'

# this comes from keystore
$db_password = cache_data('candlepin_db_password', random_password(32))

# where to store output from cpsetup execution
$log_dir = '/var/log/candlepin'

$crl_file = '/var/lib/candlepin/candlepin-crl.crl'

$oauth_key = 'candlepin'
$oauth_secret = 'candlepin'

$thumbslug_oauth_key = 'thumbslug'
$thumbslug_oauth_secret = 'thumbslug'

$ca_key = '/etc/candlepin/certs/candlepin-ca.key'
$ca_cert = '/etc/candlepin/certs/candlepin-ca.crt'
$ca_key_password = undef

$user_groups = []

$env_filtering_enabled = true
$thumbslug_enabled = false

$deployment_url = 'candlepin'

}
(5-5/6)