Try to fix disk mount failure. Edited podman configuration.

This commit is contained in:
Raphaël Numbus
2026-01-04 13:27:12 +01:00
parent 7352ad118c
commit c6eb5097e4
6 changed files with 43 additions and 12 deletions
+3 -2
View File
@@ -9,16 +9,17 @@
content = {
type = "luks";
name = "crypted-content-${j}";
initrdUnlock = false;
settings = {
keyFile = "/etc/secrets/disks/content-${j}";
allowDiscards = ${ALLOW_DISCARDS:-false};
crypttabExtraOpts = [ "nofail" ];
crypttabExtraOpts = [ "nofail" "noauto" ];
};
content = {
type = "filesystem";
format = "xfs";
mountpoint = "/mnt/content-${j}";
mountOptions = [ "nofail" "defaults" ];
mountOptions = [ "nofail" "noauto" ];
};
};
};