Class: Utils::Parted

Inherits:
Object
  • Object
show all
Defined in:
lib/utils/parted.rb

Constant Summary collapse

PARTITION_COLUMNS =
['minor','start','end','size','part_type','fs_type', 'flags', 'device']
TABLE_COLUMNS =
['device','type']
TABLE_HEADER =
/^(Number\s*)(Start\s*)(End\s*)(Size\s*)(Type*\s*)*(File\s*system\s*)\s*(Name\s*)*(Flags\s*)$/
PARTITION_TABLE =
/^Partition Table: (.*)$/
DEVICE_NAME =
/^Disk \/dev\/(.*):.*$/
InstancesResults =
EasyType::Helpers::InstancesResults

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeParted

Returns a new instance of Parted.



18
19
20
# File 'lib/utils/parted.rb', line 18

def initialize
  reset
end

Instance Attribute Details

#partitionsObject (readonly)

Returns the value of attribute partitions.



16
17
18
# File 'lib/utils/parted.rb', line 16

def partitions
  @partitions
end

#tablesObject (readonly)

Returns the value of attribute tables.



16
17
18
# File 'lib/utils/parted.rb', line 16

def tables
  @tables
end

Instance Method Details

#listObject



23
24
25
26
27
# File 'lib/utils/parted.rb', line 23

def list
  reset
  @output = parted '-l'
  parse_output
end

#show(device) ⇒ Object



29
30
31
32
33
# File 'lib/utils/parted.rb', line 29

def show(device)
  reset
  @output= parted device, 'print', {:failonfail => false}
  parse_output
end