fix(nfs): remove sync/no_subtree_check, invalid for unfs3, fixes mkdir on Windows
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# 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
|
## 1.0.10 - 2026-03-31
|
||||||
|
|
||||||
- fix: chmod 777 dynamically on each configured export folder before starting unfsd
|
- fix: chmod 777 dynamically on each configured export folder before starting unfsd
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "NFS Server",
|
"name": "NFS Server",
|
||||||
"version": "1.0.10",
|
"version": "1.0.11",
|
||||||
"slug": "nfs_server",
|
"slug": "nfs_server",
|
||||||
"description": "Expose Home Assistant media folder via NFS.",
|
"description": "Expose Home Assistant media folder via NFS.",
|
||||||
"arch": [
|
"arch": [
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ else
|
|||||||
else
|
else
|
||||||
OPTIONS="${OPTIONS},no_root_squash"
|
OPTIONS="${OPTIONS},no_root_squash"
|
||||||
fi
|
fi
|
||||||
OPTIONS="${OPTIONS},sync,no_subtree_check,insecure"
|
OPTIONS="${OPTIONS},insecure"
|
||||||
|
|
||||||
bashio::log.info "Exporting ${MOUNT_PATH} to ${NETWORK} (${OPTIONS})..."
|
bashio::log.info "Exporting ${MOUNT_PATH} to ${NETWORK} (${OPTIONS})..."
|
||||||
EXPORT_LINE="${MOUNT_PATH}"
|
EXPORT_LINE="${MOUNT_PATH}"
|
||||||
|
|||||||
Reference in New Issue
Block a user