| # |
| # AUTHOR <EMAIL@ADDRESS>, YEAR. |
| # |
| msgid "" |
| msgstr "" |
| "Project-Id-Version: 0\n" |
| "POT-Creation-Date: 2017-05-08 11:19-0500\n" |
| "PO-Revision-Date: 2017-05-08 11:19-0500\n" |
| "Last-Translator: Automatically generated\n" |
| "Language-Team: None\n" |
| "MIME-Version: 1.0\n" |
| "Content-Type: application/x-publican; charset=UTF-8\n" |
| "Content-Transfer-Encoding: 8bit\n" |
| |
| #. Tag: title |
| #, no-c-format |
| msgid "Sample Configurations" |
| msgstr "" |
| |
| #. Tag: title |
| #, no-c-format |
| msgid "Empty" |
| msgstr "" |
| |
| #. Tag: title |
| #, no-c-format |
| msgid "An Empty Configuration" |
| msgstr "" |
| |
| #. Tag: programlisting |
| #, no-c-format |
| msgid "<cib crm_feature_set=\"3.0.7\" validate-with=\"pacemaker-1.2\" admin_epoch=\"1\" epoch=\"0\" num_updates=\"0\">\n" |
| " <configuration>\n" |
| " <crm_config/>\n" |
| " <nodes/>\n" |
| " <resources/>\n" |
| " <constraints/>\n" |
| " </configuration>\n" |
| " <status/>\n" |
| "</cib>" |
| msgstr "" |
| |
| #. Tag: title |
| #, no-c-format |
| msgid "Simple" |
| msgstr "" |
| |
| #. Tag: title |
| #, no-c-format |
| msgid "A simple configuration with two nodes, some cluster options and a resource" |
| msgstr "" |
| |
| #. Tag: programlisting |
| #, no-c-format |
| msgid "<cib crm_feature_set=\"3.0.7\" validate-with=\"pacemaker-1.2\" admin_epoch=\"1\" epoch=\"0\" num_updates=\"0\">\n" |
| " <configuration>\n" |
| " <crm_config>\n" |
| " <cluster_property_set id=\"cib-bootstrap-options\">\n" |
| " <nvpair id=\"option-1\" name=\"symmetric-cluster\" value=\"true\"/>\n" |
| " <nvpair id=\"option-2\" name=\"no-quorum-policy\" value=\"stop\"/>\n" |
| " <nvpair id=\"option-3\" name=\"stonith-enabled\" value=\"0\"/>\n" |
| " </cluster_property_set>\n" |
| " </crm_config>\n" |
| " <nodes>\n" |
| " <node id=\"xxx\" uname=\"c001n01\" type=\"normal\"/>\n" |
| " <node id=\"yyy\" uname=\"c001n02\" type=\"normal\"/>\n" |
| " </nodes>\n" |
| " <resources>\n" |
| " <primitive id=\"myAddr\" class=\"ocf\" provider=\"heartbeat\" type=\"IPaddr\">\n" |
| " <operations>\n" |
| " <op id=\"myAddr-monitor\" name=\"monitor\" interval=\"300s\"/>\n" |
| " </operations>\n" |
| " <instance_attributes id=\"myAddr-params\">\n" |
| " <nvpair id=\"myAddr-ip\" name=\"ip\" value=\"192.0.2.10\"/>\n" |
| " </instance_attributes>\n" |
| " </primitive>\n" |
| " </resources>\n" |
| " <constraints>\n" |
| " <rsc_location id=\"myAddr-prefer\" rsc=\"myAddr\" node=\"c001n01\" score=\"INFINITY\"/>\n" |
| " </constraints>\n" |
| " <rsc_defaults>\n" |
| " <meta_attributes id=\"rsc_defaults-options\">\n" |
| " <nvpair id=\"rsc-default-1\" name=\"resource-stickiness\" value=\"100\"/>\n" |
| " <nvpair id=\"rsc-default-2\" name=\"migration-threshold\" value=\"10\"/>\n" |
| " </meta_attributes>\n" |
| " </rsc_defaults>\n" |
| " <op_defaults>\n" |
| " <meta_attributes id=\"op_defaults-options\">\n" |
| " <nvpair id=\"op-default-1\" name=\"timeout\" value=\"30s\"/>\n" |
| " </meta_attributes>\n" |
| " </op_defaults>\n" |
| " </configuration>\n" |
| " <status/>\n" |
| "</cib>" |
| msgstr "" |
| |
| #. Tag: para |
| #, no-c-format |
| msgid "In the above example, we have one resource (an IP address) that we check every five minutes and will run on host <literal>c001n01</literal> until either the resource fails 10 times or the host shuts down." |
| msgstr "" |
| |
| #. Tag: title |
| #, no-c-format |
| msgid "Advanced Configuration" |
| msgstr "" |
| |
| #. Tag: title |
| #, no-c-format |
| msgid "An advanced configuration with groups, clones and STONITH" |
| msgstr "" |
| |
| #. Tag: programlisting |
| #, no-c-format |
| msgid "<cib crm_feature_set=\"3.0.7\" validate-with=\"pacemaker-1.2\" admin_epoch=\"1\" epoch=\"0\" num_updates=\"0\">\n" |
| " <configuration>\n" |
| " <crm_config>\n" |
| " <cluster_property_set id=\"cib-bootstrap-options\">\n" |
| " <nvpair id=\"option-1\" name=\"symmetric-cluster\" value=\"true\"/>\n" |
| " <nvpair id=\"option-2\" name=\"no-quorum-policy\" value=\"stop\"/>\n" |
| " <nvpair id=\"option-3\" name=\"stonith-enabled\" value=\"true\"/>\n" |
| " </cluster_property_set>\n" |
| " </crm_config>\n" |
| " <nodes>\n" |
| " <node id=\"xxx\" uname=\"c001n01\" type=\"normal\"/>\n" |
| " <node id=\"yyy\" uname=\"c001n02\" type=\"normal\"/>\n" |
| " <node id=\"zzz\" uname=\"c001n03\" type=\"normal\"/>\n" |
| " </nodes>\n" |
| " <resources>\n" |
| " <primitive id=\"myAddr\" class=\"ocf\" provider=\"heartbeat\" type=\"IPaddr\">\n" |
| " <operations>\n" |
| " <op id=\"myAddr-monitor\" name=\"monitor\" interval=\"300s\"/>\n" |
| " </operations>\n" |
| " <instance_attributes id=\"myAddr-attrs\">\n" |
| " <nvpair id=\"myAddr-attr-1\" name=\"ip\" value=\"192.0.2.10\"/>\n" |
| " </instance_attributes>\n" |
| " </primitive>\n" |
| " <group id=\"myGroup\">\n" |
| " <primitive id=\"database\" class=\"lsb\" type=\"oracle\">\n" |
| " <operations>\n" |
| " <op id=\"database-monitor\" name=\"monitor\" interval=\"300s\"/>\n" |
| " </operations>\n" |
| " </primitive>\n" |
| " <primitive id=\"webserver\" class=\"lsb\" type=\"apache\">\n" |
| " <operations>\n" |
| " <op id=\"webserver-monitor\" name=\"monitor\" interval=\"300s\"/>\n" |
| " </operations>\n" |
| " </primitive>\n" |
| " </group>\n" |
| " <clone id=\"STONITH\">\n" |
| " <meta_attributes id=\"stonith-options\">\n" |
| " <nvpair id=\"stonith-option-1\" name=\"globally-unique\" value=\"false\"/>\n" |
| " </meta_attributes>\n" |
| " <primitive id=\"stonithclone\" class=\"stonith\" type=\"external/ssh\">\n" |
| " <operations>\n" |
| " <op id=\"stonith-op-mon\" name=\"monitor\" interval=\"5s\"/>\n" |
| " </operations>\n" |
| " <instance_attributes id=\"stonith-attrs\">\n" |
| " <nvpair id=\"stonith-attr-1\" name=\"hostlist\" value=\"c001n01,c001n02\"/>\n" |
| " </instance_attributes>\n" |
| " </primitive>\n" |
| " </clone>\n" |
| " </resources>\n" |
| " <constraints>\n" |
| " <rsc_location id=\"myAddr-prefer\" rsc=\"myAddr\" node=\"c001n01\"\n" |
| " score=\"INFINITY\"/>\n" |
| " <rsc_colocation id=\"group-with-ip\" rsc=\"myGroup\" with-rsc=\"myAddr\"\n" |
| " score=\"INFINITY\"/>\n" |
| " </constraints>\n" |
| " <op_defaults>\n" |
| " <meta_attributes id=\"op_defaults-options\">\n" |
| " <nvpair id=\"op-default-1\" name=\"timeout\" value=\"30s\"/>\n" |
| " </meta_attributes>\n" |
| " </op_defaults>\n" |
| " <rsc_defaults>\n" |
| " <meta_attributes id=\"rsc_defaults-options\">\n" |
| " <nvpair id=\"rsc-default-1\" name=\"resource-stickiness\" value=\"100\"/>\n" |
| " <nvpair id=\"rsc-default-2\" name=\"migration-threshold\" value=\"10\"/>\n" |
| " </meta_attributes>\n" |
| " </rsc_defaults>\n" |
| " </configuration>\n" |
| " <status/>\n" |
| "</cib>" |
| msgstr "" |
| |