|
Bogdan Timofte
authored
3 months ago
|
1
|
# AutoNAS Default Configuration
|
|
|
2
|
# This file is sourced by AutoNAS scripts to set default behavior
|
|
|
3
|
|
|
|
4
|
# Debug mode - set to "true" to enable verbose logging
|
|
|
5
|
# When enabled, all AutoNAS operations will produce detailed debug output
|
|
|
6
|
AUTONAS_DEBUG="false"
|
|
|
7
|
|
|
|
8
|
# Log level for AutoNAS operations
|
|
|
9
|
# Possible values: error, warn, info, debug
|
|
|
10
|
AUTONAS_LOG_LEVEL="info"
|
|
|
11
|
|
|
|
12
|
# Default timeout for disk operations (in seconds)
|
|
|
13
|
AUTONAS_DISK_TIMEOUT="30"
|
|
|
14
|
|
|
|
15
|
# Enable automatic cleanup of orphaned entries at boot
|
|
|
16
|
AUTONAS_CLEANUP_ORPHANS="true"
|
|
|
17
|
|
|
|
18
|
# NFS export defaults
|
|
|
19
|
AUTONAS_NFS_DEFAULT_OPTIONS="*(rw,all_squash,insecure,async,no_subtree_check,anonuid=0,anongid=0)"
|
|
|
20
|
|
|
|
21
|
# Udev rules timeout
|
|
|
22
|
AUTONAS_UDEV_TIMEOUT="10"
|