From 290e659d2906c85b7547d4a71a299afc43681afe Mon Sep 17 00:00:00 2001 From: hygienic-books Date: Sun, 22 Oct 2023 01:39:57 +0200 Subject: [PATCH] refactor(zfs): Single-quote dataset options for consistency (#3) --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 91cf92e..9d29fc1 100644 --- a/setup.sh +++ b/setup.sh @@ -229,7 +229,7 @@ function create_pool () { } function create_root_dataset () { - zfs create -o mountpoint=none -o canmount=off "${zpool_name}"'/root' + zfs create -o 'mountpoint=none' -o 'canmount=off' "${zpool_name}"'/root' # zfs set org.zfsbootmenu:commandline="ro quiet" "${zpool_name}"'/root' zfs set org.zfsbootmenu:commandline="ro" "${zpool_name}"'/root' }