Module: Yast::PartitioningEpTmpfsDialogsInclude

Defined in:
../../src/include/partitioning/ep-tmpfs-dialogs.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) DlgCreateTmpfs(data)



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File '../../src/include/partitioning/ep-tmpfs-dialogs.rb', line 32

def DlgCreateTmpfs(data)
  aliases = { "FormatMount" => lambda do
    (
      data_ref = arg_ref(data.value);
      _MiniWorkflowStepFormatMount_result = MiniWorkflowStepFormatMount(
        data_ref
      );
      data.value = data_ref.value;
      _MiniWorkflowStepFormatMount_result
    )
  end }

  sequence = { "FormatMount" => { :finish => :finish } }

  # dialog title
  title = _("Add tmpfs Mount")

  widget = MiniWorkflow.Run(
    title,
    StorageIcons.dm_icon,
    aliases,
    sequence,
    "FormatMount"
  )

  widget == :finish
end

- (Object) initialize_partitioning_ep_tmpfs_dialogs(include_target)



28
29
30
# File '../../src/include/partitioning/ep-tmpfs-dialogs.rb', line 28

def initialize_partitioning_ep_tmpfs_dialogs(include_target)
  textdomain "storage"
end