Class: Serverspec::Type::PhpConfig

Inherits:
Base
  • Object
show all
Defined in:
lib/serverspec/type/php_config.rb

Instance Attribute Summary

Attributes inherited from Base

#name

Instance Method Summary collapse

Methods inherited from Base

#initialize, #inspect, #to_ary, #to_s

Constructor Details

This class inherits a constructor from Serverspec::Type::Base

Instance Method Details

#valueObject



3
4
5
6
7
8
9
10
# File 'lib/serverspec/type/php_config.rb', line 3

def value
  extra = '';
  extra = extra + "-c #{@options[:ini]}" if @options.has_key?(:ini)
  ret = @runner.run_command("php #{extra} -r 'echo get_cfg_var( \"#{@name}\" );'")
  val = ret.stdout
  val = val.to_i if val.match(/^\d+$/)
  val
end