Skip to content

Commit

Permalink
docs: improve comments in SBD examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjelinek committed Sep 26, 2024
1 parent 0f68410 commit 3ba798e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions examples/sbd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ba798e

Please sign in to comment.