Class: Inspec::Resources::Postgres

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePostgres

Returns a new instance of Postgres.



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/resources/postgres.rb', line 12

def initialize
  os = inspec.os
  if os.debian?
    @service = 'postgresql'
    @data_dir = '/var/lib/postgresql'
    @version = inspec.command('ls /etc/postgresql/').stdout.chomp
    @conf_dir = "/etc/postgresql/#{@version}/main"
  elsif os.redhat?
    @service = 'postgresql'
    @version = inspec.command('ls /var/lib/pgsql/').stdout.chomp
    @data_dir = "/var/lib/pgsql/#{@version}/data"
  elsif os[:name] == 'arch'
    @service = 'postgresql'
    @data_dir = '/var/lib/postgres/data'
    @conf_dir = '/var/lib/postgres/data'
  else
    @service = 'postgresql'
    @data_dir = '/var/lib/postgresql'
    @conf_dir = '/var/lib/pgsql/data'
  end

  @conf_path = File.join @conf_dir, 'postgresql.conf'
end

Instance Attribute Details

#conf_dirObject (readonly)

Returns the value of attribute conf_dir.



11
12
13
# File 'lib/resources/postgres.rb', line 11

def conf_dir
  @conf_dir
end

#conf_pathObject (readonly)

Returns the value of attribute conf_path.



11
12
13
# File 'lib/resources/postgres.rb', line 11

def conf_path
  @conf_path
end

#data_dirObject (readonly)

Returns the value of attribute data_dir.



11
12
13
# File 'lib/resources/postgres.rb', line 11

def data_dir
  @data_dir
end

#serviceObject (readonly)

Returns the value of attribute service.



11
12
13
# File 'lib/resources/postgres.rb', line 11

def service
  @service
end

Instance Method Details

#to_sObject



36
37
38
# File 'lib/resources/postgres.rb', line 36

def to_s
  'PostgreSQL'
end