Class: Specinfra::Command::Openbsd::Base::Inventory

Inherits:
Base::Inventory show all
Defined in:
lib/specinfra/command/openbsd/base/inventory.rb

Class Method Summary collapse

Methods inherited from Base

create, escape

Class Method Details

.get_cpuObject

[View source]

7
8
9
# File 'lib/specinfra/command/openbsd/base/inventory.rb', line 7

def get_cpu
  'false'
end

.get_domainObject

[View source]

15
16
17
18
# File 'lib/specinfra/command/openbsd/base/inventory.rb', line 15

def get_domain
  'hostname | ' +
  'awk -v h=`hostname -s` \'$1 ~ h { sub(h".", "", $1); print $1 }\''
end

.get_filesystemObject

[View source]

24
25
26
# File 'lib/specinfra/command/openbsd/base/inventory.rb', line 24

def get_filesystem
  'df -kP'
end

.get_fqdnObject

[View source]

20
21
22
# File 'lib/specinfra/command/openbsd/base/inventory.rb', line 20

def get_fqdn
  'hostname'
end

.get_hostnameObject

[View source]

11
12
13
# File 'lib/specinfra/command/openbsd/base/inventory.rb', line 11

def get_hostname
  'hostname -s'
end

.get_memoryObject

[View source]

3
4
5
# File 'lib/specinfra/command/openbsd/base/inventory.rb', line 3

def get_memory
  'false'
end

.get_system_product_nameObject

[View source]

28
29
30
# File 'lib/specinfra/command/openbsd/base/inventory.rb', line 28

def get_system_product_name
  'sysctl -n hw.product' 
end