Class: Utils::Parted
- Inherits:
-
Object
- Object
- Utils::Parted
- 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
-
#partitions ⇒ Object
readonly
Returns the value of attribute partitions.
-
#tables ⇒ Object
readonly
Returns the value of attribute tables.
Instance Method Summary collapse
-
#initialize ⇒ Parted
constructor
A new instance of Parted.
- #list ⇒ Object
- #show(device) ⇒ Object
Constructor Details
#initialize ⇒ Parted
Returns a new instance of Parted.
18 19 20 |
# File 'lib/utils/parted.rb', line 18 def initialize reset end |
Instance Attribute Details
#partitions ⇒ Object (readonly)
Returns the value of attribute partitions.
16 17 18 |
# File 'lib/utils/parted.rb', line 16 def partitions @partitions end |
#tables ⇒ Object (readonly)
Returns the value of attribute tables.
16 17 18 |
# File 'lib/utils/parted.rb', line 16 def tables @tables end |
Instance Method Details
#list ⇒ Object
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 |