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
72
73
|
# 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>",
"authentication" => "<p><b>Authentication configuration</b><br> \n" +
"<b>Enable Security Auth</b><br>\n" +
"Enable/disable authentication of geo cluster of one conf.</p>" +
"<p><b>Authentication file</b><br>\n" +
"The file will be written to /etc/booth. To write it to a different directory, enter an absolute path.\n" +
"To join an existing geo cluster, please copy /etc/booth/<key> from other nodes manually.</p>" +
"<p><b>Generate Authentication Key File</b><br>\n" +
"Auto generate authentication file. The key must be between 8 and 64 characters long and" +
"be readable only by the file owner. Save as /etc/booth/*.key is recommended.\n" +
"Need to sync generated authentication file to all nodes manually or via csync2." +
"Generation may fail when file already exist or directory not exist!" +
"</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
|