Module: Yast::RelocationServerHelpsInclude

Defined in:
../../src/include/relocation-server/helps.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) initialize_relocation_server_helps(include_target)



30
31
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
59
60
61
62
63
64
65
66
67
68
69
70
71
# File '../../src/include/relocation-server/helps.rb', line 30

def initialize_relocation_server_helps(include_target)
  textdomain "relocation-server"

  # All helps are here
  @HELPS = {
    # Read dialog help 1/2
    "read"               => _(
      "<p><b><big>Initializing relocation-server Configuration</big></b><br>\nPlease wait...<br></p>\n"
    ) +
      # Read dialog help 2/2
      _(
        "<p><b><big>Aborting Initialization:</big></b><br>\nSafely abort the configuration utility by pressing <b>Abort</b> now.</p>\n"
      ),
    # Write dialog help 1/2
    "write"              => _(
      "<p><b><big>Saving relocation-server Configuration</big></b><br>\nPlease wait...<br></p>\n"
    ) +
      # Write dialog help 2/2
      _(
        "<p><b><big>Aborting Saving:</big></b><br>\n" +
          "Abort the save procedure by pressing <b>Abort</b>.\n" +
          "An additional dialog informs whether it is safe to do so.\n" +
          "</p>\n"
      ),
    "xend_configuration" => _(
      "<p><b>Relocation Address</b><br>\n" +
        "Address xend should listen on for relocation-socket connections</p>\n" +
        "<p><b>Allowed Hosts</b><br>\n" +
        "The hosts allowed to talk to the relocation port. If this is empty, then all connections are allowed. Otherwise, this should be a space-separated sequence of regular expressions. Any host with a fully-qualified domain name or an IP address that matches one of these regular expressions will be accepted.</p>\n" +
        "<p><b>SSL Key File/SSL Cert File</b><br>\n" +
        "SSL key and certificate to use for the ssl relocation interface</p>"
    ),
    "kvm_configuration"  => _(
      "<p><b><big>Tunneled migration</big></b><br>\n" +
        "The source host libvirtd opens a direct connection to the destination host libvirtd for sending migration data. This allows the option of encrypting the data stream.</p>\n" +
        "<p><b><big>Plain migration</big></b><br>\n" +
        "The source host VM opens a direct unencrypted TCP connection to the destination host for sending the migration data. Unless a port is manually specified, libvirt will choose a migration port in the default range.</p>"
    )
  } 

  # EOF
end