Skip to content
Snippets Groups Projects
Select Git revision
  • 2322ff67fd8089ab6df8d56d796532f42bbfa06a
  • master default
  • v0.52.5
  • v0.52.4
  • v0.52.3
  • v0.52.2
  • v0.52.1
  • v0.52.0
  • v0.51.0
  • v0.50.0
  • v0.49.0
11 results

osfamilymap.yaml

Blame
    • Imran Iqbal's avatar
      2322ff67
      ci(yamllint): add rule `empty-values` & use new `yaml-files` setting · 2322ff67
      Imran Iqbal authored
      * Semi-automated using https://github.com/myii/ssf-formula/pull/27
      * Fix (or ignore) errors shown below:
      
      ```bash
      mysql-formula$ yamllint -s .
      ./mysql/osfamilymap.yaml
        46:14     error    empty value in block mapping  (empty-values)
        66:14     error    empty value in block mapping  (empty-values)
        67:14     error    empty value in block mapping  (empty-values)
        68:16     error    empty value in block mapping  (empty-values)
        69:17     error    empty value in block mapping  (empty-values)
        70:16     error    empty value in block mapping  (empty-values)
        87:7      error    empty value in block mapping  (empty-values)
        216:14    error    empty value in block mapping  (empty-values)
        217:17    error    empty value in block mapping  (empty-values)
      
      ./mysql/defaults.yaml
        29:10     error    empty value in block mapping  (empty-values)
        30:11     error    empty value in block mapping  (empty-values)
      ```
      ci(yamllint): add rule `empty-values` & use new `yaml-files` setting
      Imran Iqbal authored
      * Semi-automated using https://github.com/myii/ssf-formula/pull/27
      * Fix (or ignore) errors shown below:
      
      ```bash
      mysql-formula$ yamllint -s .
      ./mysql/osfamilymap.yaml
        46:14     error    empty value in block mapping  (empty-values)
        66:14     error    empty value in block mapping  (empty-values)
        67:14     error    empty value in block mapping  (empty-values)
        68:16     error    empty value in block mapping  (empty-values)
        69:17     error    empty value in block mapping  (empty-values)
        70:16     error    empty value in block mapping  (empty-values)
        87:7      error    empty value in block mapping  (empty-values)
        216:14    error    empty value in block mapping  (empty-values)
        217:17    error    empty value in block mapping  (empty-values)
      
      ./mysql/defaults.yaml
        29:10     error    empty value in block mapping  (empty-values)
        30:11     error    empty value in block mapping  (empty-values)
      ```
    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: