Class: Specinfra::Command::Linux::Base::Inventory

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

Class Method Summary collapse

Methods inherited from Base

create, escape

Class Method Details

.get_cpuObject



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

def get_cpu
  'cat /proc/cpuinfo'
end

.get_domainObject



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

def get_domain
  'dnsdomainname'
end

.get_filesystemObject



23
24
25
# File 'lib/specinfra/command/linux/base/inventory.rb', line 23

def get_filesystem
  'df -P'
end

.get_fqdnObject



19
20
21
# File 'lib/specinfra/command/linux/base/inventory.rb', line 19

def get_fqdn
  'hostname -f'
end

.get_hostnameObject



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

def get_hostname
  'hostname -s'
end

.get_memoryObject



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

def get_memory
  'cat /proc/meminfo'
end