feat(nfs): add root_squash option per share, default true for security

This commit is contained in:
2026-03-31 12:17:42 +02:00
parent 3123d313c1
commit ab6901cf4b
2 changed files with 14 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "NFS Server",
"version": "1.0.7",
"version": "1.0.8",
"slug": "nfs_server",
"description": "Expose Home Assistant media folder via NFS.",
"arch": [
@@ -26,7 +26,8 @@
{
"folder": "media",
"allowed_network": "192.168.1.0/24",
"read_only": false
"read_only": false,
"root_squash": true
}
]
},
@@ -35,7 +36,8 @@
{
"folder": "str",
"allowed_network": "str",
"read_only": "bool"
"read_only": "bool",
"root_squash": "bool"
}
]
},