module-puppetlabs-mysql/spec/classes
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
..
mysql_bindings_spec.rb Fix spec tests on ruby 1.8. 2013-09-13 13:42:32 -04:00
mysql_client_spec.rb Rewrite spec tests to account for changes. 2013-09-13 13:14:48 -04:00
mysql_server_account_security_spec.rb Use new provider names in manifests. 2013-08-28 18:11:21 -04:00
mysql_server_backup_spec.rb Adding beaker-rspec test files 2013-12-06 14:52:41 -08:00
mysql_server_monitor_spec.rb Port of a6101dc (mysql::server::monitor fix) to 2.x. 2013-10-07 09:55:13 -04:00
mysql_server_mysqltuner_spec.rb Rewrite spec tests to account for changes. 2013-09-13 13:14:48 -04:00
mysql_server_spec.rb Support multiple lines of the same option 2013-12-18 16:00:12 -05:00