b3572238a00d3dd8a2b65c590d5366fe1477bc0d
The mysql module REQUIRES a root_password for the mysql::server module. I changed a statically-set password to a parameter to make this process a bit easier.
Puppet Dashboard Module
Gary Larizza gary@puppetlabs.com
This module manages and installs the Puppet Dashboard.
Quick Start
To install the Puppet Dashboard and configure it with sane defaults, include the following in your site.pp file:
node default {
class {'dashboard':
dashboard_ensure => 'present',
dashboard_user => 'dashboard',
dashboard_password => 'changeme',
dashboard_db => 'dashboard_db',
dashboard_charset => 'utf8',
mysql_root_pw => 'REALLY_change_me',
}
}
Feature Requests
- Include the ability to run Puppet Dashboard under Passenger.
- Sqlite support.
- Integration with Puppet module to set puppet.conf settings.
Description