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
This commit is contained in:
Colleen Murphy 2015-08-13 12:43:11 -07:00
parent 6b8ff4b357
commit fea61c6c44
1 changed files with 1 additions and 1 deletions

View File

@ -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'
) {