|
Bogdan Timofte
authored
3 months ago
|
1
|
# AutoNAS Disk Configuration File
|
|
|
2
|
#
|
|
|
3
|
# Configuration format for different device types:
|
|
|
4
|
#
|
|
|
5
|
# External Storage (NFS):
|
|
|
6
|
# UUID:name:ip:interface:mount_point:nfs_options
|
|
|
7
|
#
|
|
|
8
|
# Camera Import (integrated media importer):
|
|
|
9
|
# UUID:name:IMPORT:IMPORT:temp_mount_point:destination_path
|
|
|
10
|
# Note: Media importer script (/usr/local/bin/autonas-media-importer.sh) is built-in and non-configurable
|
|
|
11
|
#
|
|
|
12
|
# Examples:
|
|
|
13
|
# f6ac3d86-5681-4b33-bc64-aa272b333057:ext01:192.168.10.21:thunderbridge:/mnt/autonas/ext01:*(rw,all_squash,insecure,async,no_subtree_check,anonuid=0,anongid=0)
|
|
|
14
|
# 8765-4321:camera-real:IMPORT:IMPORT:/mnt/autonas/camera-real:/mnt/autonas/ext01/@Camera/import
|
|
|
15
|
#
|
|
|
16
|
# Default NFS Options (AutoNAS standard): *(rw,all_squash,insecure,async,no_subtree_check,anonuid=0,anongid=0)
|
|
|
17
|
# - rw: Read/write access
|
|
|
18
|
# - all_squash: Map all users to anonymous
|
|
|
19
|
# - insecure: Allow connections from non-reserved ports
|
|
|
20
|
# - async: Asynchronous writes (better performance)
|
|
|
21
|
# - no_subtree_check: Better performance
|
|
|
22
|
# - anonuid=0,anongid=0: Map anonymous to root (UID/GID 0)
|
|
|
23
|
#
|
|
|
24
|
# Rules for disk names:
|
|
|
25
|
# - Max 50 characters
|
|
|
26
|
# - Only letters, numbers, hyphens (-), underscores (_), and at symbol (@)
|
|
|
27
|
# - Must start with letter or number
|
|
|
28
|
# - Cannot use reserved names (root, home, tmp, etc.)
|
|
|
29
|
#
|
|
|
30
|
# Add your disk configurations below:
|