1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
-server::installation { ... notify => Exec["Reset the root password"], ... } -server::service { ... exec { "Reset the root password": command => "/usr/bin/mysqladmin -u root password \"...\"", cwd => "/var/lib/mysql", onlyif => "/usr/bin/mysql -u root -e ''", refreshonly => true, user => "mysql", } } |

