journald as a core component tries setting a ACL on the journal files for (non-root) users and fails on our ZFS installs. Resulting in dmesg being spammed with messages from journald upon each journal-rotation for each user upon their first login.
This is also suggested by OpenZFS in their Debian guide for root on ZFS: https://openzfs.github.io/openzfs-docs/Getting%20Started/Debian/Debian%20Bookworm%20Root%20on%20ZFS.html Tested by setting this on a machine of mine, where this has been bugging for quite a while. Signed-off-by: Stoiko Ivanov <s.iva...@proxmox.com> --- Proxmox/Install.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Proxmox/Install.pm b/Proxmox/Install.pm index 48c157a..1a4ee93 100644 --- a/Proxmox/Install.pm +++ b/Proxmox/Install.pm @@ -202,6 +202,8 @@ sub zfs_create_rpool { $value = $zfs_opts->{copies} // 1; syscmd("zfs set copies=$value $pool_name") if defined($value) && $value != 1; + + syscmd("zfs set acltype=posix $pool_name/ROOT/$root_volume_name"); } my $get_raid_devlist = sub { -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel