From 9dd606f26af94fd78a68b9108fb293bbc6c57ffb Mon Sep 17 00:00:00 2001 From: Harivansh Rathi Date: Sat, 11 Apr 2026 15:23:56 +0000 Subject: [PATCH] fix: use absolute path for e2fsck on host --- internal/daemon/files.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/daemon/files.go b/internal/daemon/files.go index e612b85..91960d3 100644 --- a/internal/daemon/files.go +++ b/internal/daemon/files.go @@ -649,5 +649,5 @@ func syncDir(path string) error { } func repairDirtyFilesystem(diskPath string) { - _ = exec.Command("e2fsck", "-fy", diskPath).Run() + _ = exec.Command("/usr/sbin/e2fsck", "-fy", diskPath).Run() }