From 1d76ae53d74ea711f2176de5a5a4640555a97a86 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Mon, 20 Oct 2025 03:11:04 -0500 Subject: [PATCH] README/example: 'become', adjust quotes --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3daca64..febc156 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ or [Ubuntu](https://openzfs.github.io/openzfs-docs/Getting%20Started/Ubuntu/inde vars: zfs_dkms_arc_pct_max: 33 tasks: - - name: Pool (mirror, 'rust') # see also: 'community.general.zfs' + - name: "Pool (mirror, 'rust')" # see also: 'community.general.zfs' when: zfs_mirror_disks is defined community.general.zpool: name: rust @@ -44,6 +44,7 @@ or [Ubuntu](https://openzfs.github.io/openzfs-docs/Getting%20Started/Ubuntu/inde vdevs: - type: mirror disks: "{{ zfs_mirror_disks }}" # reminder: 'host_vars'/inventory, host-specific + become: true ``` _NOTE:_ It is _not_ recommended to inline `zfs_mirror_disks` like this example.