zfs: always force creation of zpool

This commit is contained in:
Felix Richter 2023-06-14 22:19:02 +02:00 committed by Jörg Thalheim
parent 55eea2030a
commit 88c99e1d39

View File

@ -64,7 +64,7 @@
inherit config options;
default = _: ''
readarray -t zfs_devices < <(cat "$disko_devices_dir"/zfs_${config.name})
zpool create ${config.name} \
zpool create -f ${config.name} \
-R ${config.mountRoot} ${config.mode} \
${lib.concatStringsSep " " (lib.mapAttrsToList (n: v: "-o ${n}=${v}") config.options)} \
${lib.concatStringsSep " " (lib.mapAttrsToList (n: v: "-O ${n}=${v}") config.rootFsOptions)} \