mirror of
https://github.com/FPGArtktic/GnuRAMage.git
synced 2025-07-15 16:07:51 +00:00
29 lines
643 B
INI
29 lines
643 B
INI
# GnuRAMage Configuration File
|
|
# This file configures the behavior of the GnuRAMage synchronization tool.
|
|
|
|
[SETTINGS]
|
|
# Interval between synchronizations in seconds (default: 180 seconds = 3 minutes)
|
|
sync_interval = 10
|
|
|
|
# Log level: ERROR, WARN, INFO, DEBUG
|
|
log_level = INFO
|
|
|
|
# Verify checksums during sync (slower but more accurate)
|
|
verify_checksums = false
|
|
|
|
[DIRECTORIES]
|
|
# Source directory on hard disk
|
|
source_dir = /home/.../HARD-DRIVE/
|
|
|
|
# Target directory on RAM disk
|
|
ramdisk_dir = /home/.../RAMDISC/test
|
|
|
|
[EXCLUDE]
|
|
# Patterns to exclude from synchronization
|
|
# Each line is a pattern in rsync format
|
|
*.bak
|
|
*.tmp
|
|
temp_*
|
|
test_ignore_dir/
|
|
|
|
|