Skip to content
Snippets Groups Projects
Select Git revision
  • 3d5b1431dc4398d53ed6db7f6ab3e7302358e16d
  • main default
  • hsh-MOODLE_404+
  • hsh_3.10
  • master protected
  • v1.4.7
  • v1.4.6
  • v1.4.5
  • v1.4.3
  • v1.4.1
  • v1.4
  • v1.3r2
  • v1.3
  • v1.2
14 results

styles.css

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: