From 601eb5c7e4af25679dcd6c729c36ce1be108f985 Mon Sep 17 00:00:00 2001 From: thorstenspille Date: Tue, 3 Oct 2023 15:16:25 +0200 Subject: [PATCH] Fix swap creation --- postinstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postinstall b/postinstall index bb5338a..c230f85 100755 --- a/postinstall +++ b/postinstall @@ -489,7 +489,7 @@ EOF create_swap_pool(){ if ! pvesm status | grep swap; then if ! zfs list rpool/swap > /dev/null 2>&1 ; then - zfs create -O com.sun:auto-snapshot=false rpool/swap + zfs create -o com.sun:auto-snapshot=false rpool/swap else zfs set com.sun:auto-snapshot=false rpool/swap fi