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() }