From c15c6f74ab9908280f5b1ec1e1ff562f47e285ea Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 31 Mar 2026 12:56:22 +0200 Subject: [PATCH] fix(nfs): remove sync/no_subtree_check, invalid for unfs3, fixes mkdir on Windows --- nfs/CHANGELOG.md | 4 ++++ nfs/config.json | 2 +- nfs/run.sh | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/nfs/CHANGELOG.md b/nfs/CHANGELOG.md index 689b840..e89bf56 100644 --- a/nfs/CHANGELOG.md +++ b/nfs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.11 - 2026-03-31 + +- fix: remove sync/no_subtree_check (kernel NFS options, unsupported by unfs3, caused mkdir failure on Windows) + ## 1.0.10 - 2026-03-31 - fix: chmod 777 dynamically on each configured export folder before starting unfsd diff --git a/nfs/config.json b/nfs/config.json index a20afc9..48a5da2 100644 --- a/nfs/config.json +++ b/nfs/config.json @@ -1,6 +1,6 @@ { "name": "NFS Server", - "version": "1.0.10", + "version": "1.0.11", "slug": "nfs_server", "description": "Expose Home Assistant media folder via NFS.", "arch": [ diff --git a/nfs/run.sh b/nfs/run.sh index b5b6c35..6f3e28f 100644 --- a/nfs/run.sh +++ b/nfs/run.sh @@ -31,7 +31,7 @@ else else OPTIONS="${OPTIONS},no_root_squash" fi - OPTIONS="${OPTIONS},sync,no_subtree_check,insecure" + OPTIONS="${OPTIONS},insecure" bashio::log.info "Exporting ${MOUNT_PATH} to ${NETWORK} (${OPTIONS})..." EXPORT_LINE="${MOUNT_PATH}"