From 3ba798ea4613f568ffeefea55ad11247718dcb26 Mon Sep 17 00:00:00 2001 From: Tomas Jelinek Date: Thu, 26 Sep 2024 16:33:35 +0200 Subject: [PATCH] docs: improve comments in SBD examples --- README.md | 5 +++-- examples/sbd.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f61ae517..076d2e96 100644 --- a/README.md +++ b/README.md @@ -1651,9 +1651,10 @@ in /var/lib/pcsd with the file name FILENAME.crt and FILENAME.key, respectively. - hosts: node1 node2 vars: my_sbd_devices: - # This variable is not used by the role. - # It's purpose is to define SBD devices once so they don't need + # This variable is not used by the role directly. + # Its purpose is to define SBD devices once so they don't need # to be repeated several times in the role variables. + # Instead, variables directly used by the role refer to this variable. - /dev/disk/by-id/000001 - /dev/disk/by-id/000002 - /dev/disk/by-id/000003 diff --git a/examples/sbd.yml b/examples/sbd.yml index a1b6ee62..8323b033 100644 --- a/examples/sbd.yml +++ b/examples/sbd.yml @@ -4,9 +4,10 @@ hosts: node1 node2 vars: my_sbd_devices: - # This variable is not used by the role. - # It's purpose is to define SBD devices once so they don't need + # This variable is not used by the role directly. + # Its purpose is to define SBD devices once so they don't need # to be repeated several times in the role variables. + # Instead, variables directly used by the role refer to this variable. - /dev/disk/by-id/000001 - /dev/disk/by-id/000002 - /dev/disk/by-id/000003