William Van Hevelingen 37e013bfa2 (#14450) Fix dashboard::passenger issues
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.
2012-05-12 19:34:25 -07:00

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,
}
}