Skip to content
Snippets Groups Projects
Select Git revision
  • d16e91ceb03411f58c98cbb919f65b3f3eb4abbb
  • master default
  • json_fix
  • puneetk-patch-1
4 results

.travis.yml

Blame
  • osfamilymap.yaml 6.76 KiB
    # -*- coding: utf-8 -*-
    # vim: ft=yaml
    ---
    Debian:
      devpkg: libmysqlclient-dev
    
      config:
        sections:
          mysqld_safe:
            socket: /var/run/mysqld/mysqld.sock
            nice: 0
          mysqld:
            pid_file: /var/run/mysqld/mysqld.pid
            basedir: /usr
            tmpdir: /tmp
            lc_messages_dir: /usr/share/mysql
            skip_external_locking: noarg_present
            bind_address: 127.0.0.1
            key_buffer_size: 16M
            max_allowed_packet: 16M
            thread_stack: 192K
            thread_cache_size: 8
            query_cache_limit: 1M
            query_cache_size: 16M
            expire_logs_days: 10
            max_binlog_size: 100M
            # innodb_flush_log_at_trx_commit: 1
            # innodb_lock_wait_timeout: 50
            # innodb_file_per_table: noarg_present
          mysqldump:
            quick: noarg_present
            quote_names: noarg_present
            max_allowed_packet: 16M
          isamchk:
            key_buffer_size: 16M
        append: |
          !includedir /etc/mysql/conf.d/
    
    RedHat:
      service: mysqld
      clientpkg: mysql
      pythonpkg: MySQL-python
      config:
        file: /etc/my.cnf
        sections:
          client: {}
          mysqld_safe:
            log_error: /var/log/mysql/mysqld.log
            pid_file: /var/run/mysql/mysqld.pid
          mysqld:
            socket: /var/lib/mysql/mysql.sock
            bind_address: 127.0.0.1
            symbolic_links: 0
    
    Suse:
      serverpkg: mariadb
      clientpkg: mariadb-client
      pythonpkg: python2-pymysql
    
      config:
        file: /etc/my.cnf
        sections:
          client:
            socket: /var/run/mysql/mysql.sock
          mysqld:
            # Empty values below to be resolved, disabling the rule in the meantime
            # yamllint disable rule:empty-values
            port:
            user:
            socket: