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
21
22
23
24
25
26
# File 'lib/utils/parted.rb', line 18

def initialize
  @partition_columns = []
  @current_device_name = ''
  @partition_type = ''
  @in_table = false
  @partitions = []
  @tables = []
  parse_output
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