Removed default passwords

The default passwords for the various storyboard subcomponents
as well as the init component were removed. Documentation has
also been updated.

Change-Id: I1041154b6d30722649776eca15a0f04b090ab5c8
This commit is contained in:
Michael Krotscheck 2014-08-13 11:34:01 -07:00
parent 8843f476ea
commit 974f3c32cd
5 changed files with 10 additions and 7 deletions

View File

@ -12,7 +12,10 @@ To install StoryBoard and configure it with sane defaults, include the
following in your site.pp file:
node default {
include storyboard
class { 'storyboard':
mysql_user_password => 'changeme',
rabbitmq_user_password => 'changemetoo'
}
}
# Configuration

View File

@ -34,13 +34,13 @@ class storyboard::application (
$mysql_port = 3306,
$mysql_database = 'storyboard',
$mysql_user = 'storyboard',
$mysql_user_password = 'changeme',
$mysql_user_password,
$rabbitmq_host = 'localhost',
$rabbitmq_port = 5672,
$rabbitmq_vhost = '/',
$rabbitmq_user = 'storyboard',
$rabbitmq_user_password = 'changemetoo',
$rabbitmq_user_password,
$enable_notifications = 'True'
) {

View File

@ -22,10 +22,10 @@
class storyboard (
$mysql_database = 'storyboard',
$mysql_user = 'storyboard',
$mysql_user_password = 'changeme',
$mysql_user_password,
$rabbitmq_user = 'storyboard',
$rabbitmq_user_password = 'changemetoo',
$rabbitmq_user_password,
$hostname = $::fqdn,
$openid_url = 'https://login.launchpad.net/+openid',

View File

@ -20,7 +20,7 @@
class storyboard::mysql (
$mysql_database = 'storyboard',
$mysql_user = 'storyboard',
$mysql_user_password = 'changeme',
$mysql_user_password,
) {
# Install MySQL

View File

@ -20,7 +20,7 @@
#
class storyboard::rabbit (
$rabbitmq_user = 'storyboard',
$rabbitmq_user_password = 'changeme'
$rabbitmq_user_password
) {
class { 'rabbitmq':