|
|
ed9a6b |
From 6f213eb637bf7d957ba035e3aa09ce1f1bbccf84 Mon Sep 17 00:00:00 2001
|
|
|
ed9a6b |
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
|
|
|
ed9a6b |
Date: Tue, 29 Nov 2022 16:21:18 +0100
|
|
|
ed9a6b |
Subject: [PATCH] fence_virtd: add info about using multiple uuid/ip entries
|
|
|
ed9a6b |
for groups
|
|
|
ed9a6b |
|
|
|
ed9a6b |
---
|
|
|
ed9a6b |
man/fence_virt.conf.5 | 17 +++++++++++------
|
|
|
ed9a6b |
1 file changed, 11 insertions(+), 6 deletions(-)
|
|
|
ed9a6b |
|
|
|
ed9a6b |
diff --git a/man/fence_virt.conf.5 b/man/fence_virt.conf.5
|
|
|
ed9a6b |
index c8434ed65..dfb3504f5 100644
|
|
|
ed9a6b |
--- a/man/fence_virt.conf.5
|
|
|
ed9a6b |
+++ b/man/fence_virt.conf.5
|
|
|
ed9a6b |
@@ -1,4 +1,4 @@
|
|
|
ed9a6b |
-.TH fence_virtd.conf 5
|
|
|
ed9a6b |
+.TH fence_virt.conf 5
|
|
|
ed9a6b |
|
|
|
ed9a6b |
.SH NAME
|
|
|
ed9a6b |
fence_virt.conf - configuration file for fence_virtd
|
|
|
ed9a6b |
@@ -304,15 +304,17 @@ This defines a group.
|
|
|
ed9a6b |
.TP
|
|
|
ed9a6b |
.B uuid
|
|
|
ed9a6b |
.
|
|
|
ed9a6b |
-defines UUID as a member of a group.
|
|
|
ed9a6b |
+Defines UUID as a member of a group. It can be used multiple times
|
|
|
ed9a6b |
+to specify both node name and UUID values that can be fenced.
|
|
|
ed9a6b |
|
|
|
ed9a6b |
.TP
|
|
|
ed9a6b |
.B ip
|
|
|
ed9a6b |
.
|
|
|
ed9a6b |
-defines an IP which is allowed to send fencing requests
|
|
|
ed9a6b |
-for members of this group (e.g. for multicast). It is
|
|
|
ed9a6b |
-highly recommended that this be used in conjunction with
|
|
|
ed9a6b |
-a key file.
|
|
|
ed9a6b |
+Defines an IP which is allowed to send fencing requests
|
|
|
ed9a6b |
+for members of this group (e.g. for multicast). It can be used
|
|
|
ed9a6b |
+multiple times to allow more than 1 IP to send fencing requests to
|
|
|
ed9a6b |
+the group. It is highly recommended that this be used in conjunction
|
|
|
ed9a6b |
+with a key file.
|
|
|
ed9a6b |
|
|
|
ed9a6b |
|
|
|
ed9a6b |
|
|
|
ed9a6b |
@@ -340,8 +342,11 @@ a key file.
|
|
|
ed9a6b |
groups {
|
|
|
ed9a6b |
group {
|
|
|
ed9a6b |
ip = "192.168.1.1";
|
|
|
ed9a6b |
+ ip = "192.168.1.2";
|
|
|
ed9a6b |
uuid = "44179d3f-6c63-474f-a212-20c8b4b25b16";
|
|
|
ed9a6b |
uuid = "1ce02c4b-dfa1-42cb-b5b1-f0b1091ece60";
|
|
|
ed9a6b |
+ uuid = "node1";
|
|
|
ed9a6b |
+ uuid = "node2";
|
|
|
ed9a6b |
}
|
|
|
ed9a6b |
}
|
|
|
ed9a6b |
|