
Previously when passenger was set to true the pasenger class would error. This commit fixes those problems and cleans up the template to use the apache_name parameter.
18 lines
499 B
Puppet
18 lines
499 B
Puppet
node default {
|
|
|
|
class { 'dashboard':
|
|
dashboard_ensure => 'present',
|
|
dashboard_user => 'puppet-dbuser',
|
|
dashboard_group => 'puppet-dbgroup',
|
|
dashboard_password => 'changeme',
|
|
dashboard_db => 'dashboard_prod',
|
|
dashboard_charset => 'utf8',
|
|
dashboard_site => $::fqdn,
|
|
dashboard_port => '8081',
|
|
mysql_root_pw => 'changemetoo',
|
|
passenger => true,
|
|
}
|
|
|
|
}
|
|
|