File: mysql_config.rb

package info (click to toggle)
ruby-serverspec 2.42.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: ruby: 4,835; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
module Serverspec::Type
  class MysqlConfig < Base
    def value
      ret = @runner.run_command("mysqld --verbose --help 2> /dev/null | grep '^#{@name}'")
      val = ret.stdout.match(/#{@name}\s+(.+)$/)[1]
      val = val.to_i if val.match(/^\d+$/)
      val
    end
  end
end