diff --git a/nfs/CHANGELOG.md b/nfs/CHANGELOG.md index e89bf56..e1ac2d3 100644 --- a/nfs/CHANGELOG.md +++ b/nfs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.12 - 2026-03-31 + +- fix: add -s flag to unfsd for stable file handles, fixes EIO errors during rsync + ## 1.0.11 - 2026-03-31 - fix: remove sync/no_subtree_check (kernel NFS options, unsupported by unfs3, caused mkdir failure on Windows) diff --git a/nfs/config.json b/nfs/config.json index 48a5da2..18d09dc 100644 --- a/nfs/config.json +++ b/nfs/config.json @@ -1,6 +1,6 @@ { "name": "NFS Server", - "version": "1.0.11", + "version": "1.0.12", "slug": "nfs_server", "description": "Expose Home Assistant media folder via NFS.", "arch": [ diff --git a/nfs/run.sh b/nfs/run.sh index 6f3e28f..ce6c268 100644 --- a/nfs/run.sh +++ b/nfs/run.sh @@ -47,4 +47,4 @@ cat /etc/exports # Start unfs3 user-space NFS server in foreground bashio::log.info "Starting unfs3 NFS server..." -exec unfsd -d -e /etc/exports +exec unfsd -d -s -e /etc/exports