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
|
# File '../../src/include/geo-cluster/helps.rb', line 30
def initialize_geo_cluster_helps(include_target)
textdomain "geo-cluster"
@HELPS = {
"confs" => "<p><b>configure files</b><br> \n" +
"Geo cluster support Multi confs, like /etc/booth/*.conf \n" +
"<p>",
"booth" => "<p><b>transport</b><br> \n" +
"transport means which transport layer booth daemon will use<br>\n" +
"Currently only UDP is supported</p>" +
"<p><b>port</b><br>\nThe port that booth daemons will use to talk to each other.<br>\n" +
"Defaulte port is 9929.\n" +
"<p>" +
"<p><b>arbitrator</b><br>\n" +
"The arbitrator IP\n" +
"<p>" +
"<p><b>site</b><br>\n" +
"The cluster site uses this IP to talk to other sites\n" +
"<p>" +
"<p><b>ticket</b><br>\n" +
"The ticket name, which corresponds to a set of resources which can be<br>\n" +
"fail-overed among different sites. Use the '__default__' ticket to set<br>\n" +
"the default value of ticket\n" +
"<p>",
"geo-cluster" => "<p><b>Firewall Settings</b><br> \n" +
"Enable the port when Firewall is enabled.\n" +
"<p>"
}
end
|