From fea61c6c442e7e8ce5746542fc0db3b24c99d020 Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Thu, 13 Aug 2015 12:43:11 -0700 Subject: [PATCH] Make mysql root password required The mysql server needs to have a password set, so allowing the default to be the empty string is not appropriate and will result in unexpected failures. Change-Id: I13c804509cbf9c922f367800d704e20ce5b818f9 --- manifests/mysql.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/mysql.pp b/manifests/mysql.pp index d14b999..6ad8259 100644 --- a/manifests/mysql.pp +++ b/manifests/mysql.pp @@ -15,7 +15,7 @@ # == Class: phabricator::mysql # class phabricator::mysql( - $mysql_root_password = '', + $mysql_root_password, $mysql_bind_address = '127.0.0.1', $mysql_port = '3306' ) {