From c9c5eb3fd14d14d53684f537b5b5757ed03a90a3 Mon Sep 17 00:00:00 2001 From: Brad Lodgen Date: Tue, 27 Jan 2015 17:42:03 -0600 Subject: [PATCH] (#MODULES-1058) root_password.pp cannot create /root/.my.cnf due to dependency The dependency of creating the root .my.cnf file is a command which requires the .my.cnf file. This patch removes that dependency. Without removing the dependency, if a user already has a mysql server installed with a root password and no root .my.cnf file, the module application will fail. --- manifests/server/root_password.pp | 1 - 1 file changed, 1 deletion(-) diff --git a/manifests/server/root_password.pp b/manifests/server/root_password.pp index e75412dab..9542e0f9e 100644 --- a/manifests/server/root_password.pp +++ b/manifests/server/root_password.pp @@ -14,7 +14,6 @@ content => template('mysql/my.cnf.pass.erb'), owner => 'root', mode => '0600', - require => Mysql_user['root@localhost'], } }