module-puppetlabs-mysql/templates
Guillaume Coré dae8018520 Support multiple lines of the same option
Some MySQL options need to be passed several times. For example :

  http://dev.mysql.com/doc/refman/5.5/en/replication-options-slave.html#option_mysqld_replicate-do-db

  This is currently impossible with the override_options. This patch allows to
  pass array as value. Example :

    override_options => {
      'client' => {
        'password' => 'xxx',
      },
      'mysqld' => {
        'bind_address'    => '0.0.0.0',
        'replicate-do-db' => ['base1', 'base2', 'base3'],
      },
    }

  Which will be evaluated into :

    [client]
    password = xxx

    [mysqld]
    bind_address = 0.0.0.0
    replicate-do-db = base1
    replicate-do-db = base2
    replicate-do-db = base3
2013-12-18 16:00:12 -05:00
..
my.cnf.erb Support multiple lines of the same option 2013-12-18 16:00:12 -05:00
my.cnf.pass.erb Use mysql::server::root_password instead of @options. 2013-09-27 10:31:59 -04:00
my.conf.cnf.erb Simplify a few things. 2013-07-11 19:42:41 -04:00
mysqlbackup.sh.erb Add option to mysql::backup to set the backup script to perform a mysqldump on each database to its own file 2013-08-27 15:15:29 -05:00