Class: Inspec::Resources::NginxConf

Inherits:
Object
  • Object
show all
Defined in:
lib/resources/nginx_conf.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(conf_path = nil) ⇒ NginxConf

Returns a new instance of NginxConf.



27
28
29
30
31
# File 'lib/resources/nginx_conf.rb', line 27

def initialize(conf_path = nil)
  @conf_path = conf_path || '/etc/nginx/nginx.conf'
  @contents = {}
  return skip_resource 'The `nginx_conf` resource is currently not supported on Windows.' if inspec.os.windows?
end

Instance Attribute Details

#contentsObject (readonly)

Returns the value of attribute contents.



25
26
27
# File 'lib/resources/nginx_conf.rb', line 25

def contents
  @contents
end

Instance Method Details

#paramsObject



33
34
35
36
37
38
# File 'lib/resources/nginx_conf.rb', line 33

def params
  @params ||= parse_nginx(@conf_path)
rescue StandardError => e
  skip_resource e.message
  @params = {}
end

#to_sObject



40
41
42
# File 'lib/resources/nginx_conf.rb', line 40

def to_s
  "nginx_conf #{@conf_path}"
end