Class: Yast::InstFinishClient

Inherits:
Client
  • Object
show all
Includes:
Logger
Defined in:
src/lib/installation/clients/inst_finish.rb

Instance Method Summary collapse

Instance Method Details

#mainObject



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'src/lib/installation/clients/inst_finish.rb', line 54

def main
  textdomain "installation"

  return :auto if GetInstArgs.going_back

  setup_wizard
  setup_slide_show

  init_packager

  aborted = !write

  finish_slide_show

  if aborted
    Builtins.y2milestone("inst_finish aborted")
    return :abort
  end

  report_hooks

  report_messages
  handle_kexec

  :next
end