Class: Packages::UpdateMessage

Inherits:
Struct
  • Object
show all
Defined in:
library/packages/src/lib/packages/update_message.rb

Overview

Represents an update message from libzypp.

Instance Attribute Summary collapse

Instance Attribute Details

#current_pathString (readonly)

Returns Path to the file which contains the message in the running system. While running inst-sys, it will differ from installation_path.

Returns:

  • (String)

    Path to the file which contains the message in the running system. While running inst-sys, it will differ from installation_path.



16
# File 'library/packages/src/lib/packages/update_message.rb', line 16

UpdateMessage = Struct.new(:solvable, :text, :installation_path, :current_path)

#installation_pathString (readonly)

Returns Path to the file which contains the message in the installed system.

Returns:

  • (String)

    Path to the file which contains the message in the installed system.



16
# File 'library/packages/src/lib/packages/update_message.rb', line 16

UpdateMessage = Struct.new(:solvable, :text, :installation_path, :current_path)

#solvableString (readonly)

Returns Name of the solvable libzypp element (usually the package's name).

Returns:

  • (String)

    Name of the solvable libzypp element (usually the package's name).



16
# File 'library/packages/src/lib/packages/update_message.rb', line 16

UpdateMessage = Struct.new(:solvable, :text, :installation_path, :current_path)

#textString (readonly)

Returns Message's text.

Returns:

  • (String)

    Message's text.



16
# File 'library/packages/src/lib/packages/update_message.rb', line 16

UpdateMessage = Struct.new(:solvable, :text, :installation_path, :current_path)