Sha256: 6e6986ad13d2d53bd7fddd4a0babda5910ddce7f2756659ca7e41db73bee65d6
Contents?: true
Size: 457 Bytes
Versions: 7
Compression:
Stored size: 457 Bytes
Contents
# class mysql::server::root_password { $options = $mysql::server::options # manage root password if it is set if $mysql::server::root_password != 'UNSET' { mysql_user { 'root@localhost': ensure => present, password_hash => mysql_password($mysql::server::root_password), } file { "${::root_home}/.my.cnf": content => template('mysql/my.cnf.pass.erb'), require => Mysql_user['root@localhost'], } } }
Version data entries
7 entries across 7 versions & 1 rubygems