From a265317cd21477ef1c4ba14c7c80436982721825 Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 31 Mar 2026 12:30:30 +0200 Subject: [PATCH] fix(nfs): permission options on nfs --- nfs/config.json | 2 +- nfs/run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nfs/config.json b/nfs/config.json index 936536d..61f3f22 100644 --- a/nfs/config.json +++ b/nfs/config.json @@ -1,6 +1,6 @@ { "name": "NFS Server", - "version": "1.0.8", + "version": "1.0.9", "slug": "nfs_server", "description": "Expose Home Assistant media folder via NFS.", "arch": [ diff --git a/nfs/run.sh b/nfs/run.sh index 19e03f2..df02db5 100644 --- a/nfs/run.sh +++ b/nfs/run.sh @@ -29,6 +29,7 @@ else else OPTIONS="${OPTIONS},no_root_squash" fi + OPTIONS="${OPTIONS},sync,no_subtree_check,insecure" bashio::log.info "Exporting ${MOUNT_PATH} to ${NETWORK} (${OPTIONS})..." EXPORT_LINE="${MOUNT_PATH}" @@ -40,7 +41,6 @@ else echo "${EXPORT_LINE}" >> /etc/exports done fi - cat /etc/exports # Start unfs3 user-space NFS server in foreground