mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 16:10:03 +01:00
zpool: don't mount created datasets directly; and fix encrypted import
This is necessary to support non-legacy mounts, since the creation order and the required mounting order can be different in order to not shadow any datasets. Adding -l to the import statement is necessary to allow encrypted datasets to be mounted later using disko-mount.
This commit is contained in:
parent
617c77a440
commit
b320fcd543
2 changed files with 5 additions and 2 deletions
|
|
@ -82,7 +82,7 @@
|
|||
{
|
||||
dev = ''
|
||||
zpool list '${config.name}' >/dev/null 2>/dev/null || \
|
||||
zpool import -R ${config.mountRoot} '${config.name}'
|
||||
zpool import -l -R ${config.mountRoot} '${config.name}'
|
||||
${lib.concatMapStrings (x: x.dev or "") (lib.attrValues datasetMounts)}
|
||||
'';
|
||||
fs = (datasetMounts.fs or {}) // lib.optionalAttrs (config.mountpoint != null) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue