Class: Inspec::Resources::NginxConf
- Inherits:
-
Object
- Object
- Inspec::Resources::NginxConf
- Defined in:
- lib/resources/nginx_conf.rb
Instance Attribute Summary collapse
-
#contents ⇒ Object
readonly
Returns the value of attribute contents.
Instance Method Summary collapse
-
#initialize(conf_path = nil) ⇒ NginxConf
constructor
A new instance of NginxConf.
- #params ⇒ Object
- #to_s ⇒ Object
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
#contents ⇒ Object (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
#params ⇒ Object
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. @params = {} end |
#to_s ⇒ Object
40 41 42 |
# File 'lib/resources/nginx_conf.rb', line 40 def to_s "nginx_conf #{@conf_path}" end |