Class: Yast::StorageProposalClass::PostProcessor

Inherits:
Object
  • Object
show all
Defined in:
../../src/modules/StorageProposal.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) process_partitions(partitions)



4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
# File '../../src/modules/StorageProposal.rb', line 4395

def process_partitions(partitions)

  @have_boot_partition = false
  @have_home_partition = false

  analyse(partitions)

  return modify(partitions)

end

- (Object) process_target(target)



4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
# File '../../src/modules/StorageProposal.rb', line 4406

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