fix(nfs): add unfsd -s flag for stable file handles, fixes rsync EIO errors

This commit is contained in:
2026-03-31 14:38:58 +02:00
parent c15c6f74ab
commit b5e46d4406
3 changed files with 6 additions and 2 deletions

View File

@@ -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)

View File

@@ -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": [

View File

@@ -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