Skip to content

Commit

Permalink
(#MODULES-1058) root_password.pp cannot create /root/.my.cnf due to d…
Browse files Browse the repository at this point in the history
…ependency

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.
  • Loading branch information
lodgenbd committed Jan 27, 2015
1 parent 74e1969 commit c9c5eb3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion manifests/server/root_password.pp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
content => template('mysql/my.cnf.pass.erb'),
owner => 'root',
mode => '0600',
require => Mysql_user['root@localhost'],
}
}

Expand Down

0 comments on commit c9c5eb3

Please sign in to comment.