Merge "Removed default passwords"
This commit is contained in:
commit
372394f0e1
@ -12,7 +12,10 @@ To install StoryBoard and configure it with sane defaults, include the
|
|||||||
following in your site.pp file:
|
following in your site.pp file:
|
||||||
|
|
||||||
node default {
|
node default {
|
||||||
include storyboard
|
class { 'storyboard':
|
||||||
|
mysql_user_password => 'changeme',
|
||||||
|
rabbitmq_user_password => 'changemetoo'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
@ -202,4 +205,4 @@ File content format:
|
|||||||
- openid: https://login.launchpad.net/+id/some_openid
|
- openid: https://login.launchpad.net/+id/some_openid
|
||||||
email: your_email@some_email_host.com
|
email: your_email@some_email_host.com
|
||||||
- openid: https://login.launchpad.net/+id/some_other_id
|
- openid: https://login.launchpad.net/+id/some_other_id
|
||||||
email: admin_email@some_email_host.com
|
email: admin_email@some_email_host.com
|
||||||
|
@ -36,13 +36,13 @@ class storyboard::application (
|
|||||||
$mysql_port = 3306,
|
$mysql_port = 3306,
|
||||||
$mysql_database = 'storyboard',
|
$mysql_database = 'storyboard',
|
||||||
$mysql_user = 'storyboard',
|
$mysql_user = 'storyboard',
|
||||||
$mysql_user_password = 'changeme',
|
$mysql_user_password,
|
||||||
|
|
||||||
$rabbitmq_host = 'localhost',
|
$rabbitmq_host = 'localhost',
|
||||||
$rabbitmq_port = 5672,
|
$rabbitmq_port = 5672,
|
||||||
$rabbitmq_vhost = '/',
|
$rabbitmq_vhost = '/',
|
||||||
$rabbitmq_user = 'storyboard',
|
$rabbitmq_user = 'storyboard',
|
||||||
$rabbitmq_user_password = 'changemetoo',
|
$rabbitmq_user_password,
|
||||||
$enable_notifications = 'True'
|
$enable_notifications = 'True'
|
||||||
) {
|
) {
|
||||||
|
|
||||||
|
@ -22,10 +22,10 @@
|
|||||||
class storyboard (
|
class storyboard (
|
||||||
$mysql_database = 'storyboard',
|
$mysql_database = 'storyboard',
|
||||||
$mysql_user = 'storyboard',
|
$mysql_user = 'storyboard',
|
||||||
$mysql_user_password = 'changeme',
|
$mysql_user_password,
|
||||||
|
|
||||||
$rabbitmq_user = 'storyboard',
|
$rabbitmq_user = 'storyboard',
|
||||||
$rabbitmq_user_password = 'changemetoo',
|
$rabbitmq_user_password,
|
||||||
|
|
||||||
$hostname = $::fqdn,
|
$hostname = $::fqdn,
|
||||||
$openid_url = 'https://login.launchpad.net/+openid',
|
$openid_url = 'https://login.launchpad.net/+openid',
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
class storyboard::mysql (
|
class storyboard::mysql (
|
||||||
$mysql_database = 'storyboard',
|
$mysql_database = 'storyboard',
|
||||||
$mysql_user = 'storyboard',
|
$mysql_user = 'storyboard',
|
||||||
$mysql_user_password = 'changeme',
|
$mysql_user_password,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
# Install MySQL
|
# Install MySQL
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#
|
#
|
||||||
class storyboard::rabbit (
|
class storyboard::rabbit (
|
||||||
$rabbitmq_user = 'storyboard',
|
$rabbitmq_user = 'storyboard',
|
||||||
$rabbitmq_user_password = 'changeme'
|
$rabbitmq_user_password
|
||||||
) {
|
) {
|
||||||
|
|
||||||
class { 'rabbitmq':
|
class { 'rabbitmq':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user