Class: Apache

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

Overview

copyright: 2015, Vulcano Security GmbH author: Christoph Hartmann author: Dominik Richter license: All rights reserved

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeApache

Returns a new instance of Apache.



11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/resources/apache.rb', line 11

def initialize
  case inspec.os[:family]
  when 'ubuntu', 'debian'
    @service = 'apache2'
    @conf_dir = '/etc/apache2/'
    @conf_path = File.join @conf_dir, 'apache2.conf'
    @user = 'www-data'
  else
    @service = 'httpd'
    @conf_dir = '/etc/httpd/'
    @conf_path = File.join @conf_dir, '/conf/httpd.conf'
    @user = 'apache'
  end
end

Instance Attribute Details

#conf_dirObject (readonly)

Returns the value of attribute conf_dir.



10
11
12
# File 'lib/resources/apache.rb', line 10

def conf_dir
  @conf_dir
end

#conf_pathObject (readonly)

Returns the value of attribute conf_path.



10
11
12
# File 'lib/resources/apache.rb', line 10

def conf_path
  @conf_path
end

#serviceObject (readonly)

Returns the value of attribute service.



10
11
12
# File 'lib/resources/apache.rb', line 10

def service
  @service
end

#userObject (readonly)

Returns the value of attribute user.



10
11
12
# File 'lib/resources/apache.rb', line 10

def user
  @user
end

Instance Method Details

#to_sObject



26
27
28
# File 'lib/resources/apache.rb', line 26

def to_s
  'Apache Environment'
end