Class: Yast::StorageProposalClass::PostProcessor
- Inherits:
-
Object
- Object
- Yast::StorageProposalClass::PostProcessor
- Defined in:
- ../../src/modules/StorageProposal.rb
Instance Method Summary (collapse)
Instance Method Details
- (Object) process_partitions(partitions)
4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 |
# File '../../src/modules/StorageProposal.rb', line 4397 def process_partitions(partitions) @have_boot_partition = false @have_home_partition = false analyse(partitions) return modify(partitions) end |
- (Object) process_target(target)
4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 |
# File '../../src/modules/StorageProposal.rb', line 4408 def process_target(target) @have_boot_partition = false @have_home_partition = false target.each do |device, container| analyse(container["partitions"]) end target.each do |device, container| container["partitions"] = modify(container["partitions"]) end return target end |