module-puppetlabs-mysql/spec/system
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
..
types Fix an issue with lowercase privileges. 2013-10-28 12:44:48 -04:00
mysql_account_delete_spec.rb Rewrite spec tests to account for changes. 2013-09-13 13:14:48 -04:00
mysql_backup_spec.rb Adding beaker-rspec test files 2013-12-06 14:52:41 -08:00
mysql_bindings_spec.rb Refactor MySQL bindings and client packages. 2013-07-19 18:39:55 -04:00
mysql_db_spec.rb Remove mysql::globals. 2013-09-24 18:04:29 -04:00
mysql_server_monitor_spec.rb Improve mysql_grant to work with IPv6. 2013-10-07 11:57:02 -07:00
mysql_server_root_password_spec.rb Fix broken test on RedHat. 2013-11-14 18:40:46 -05:00
mysql_server_spec.rb Support multiple lines of the same option 2013-12-18 16:00:12 -05:00