mirror of
https://github.com/edu4rdshl/rusnapshot.git
synced 2026-07-17 23:24:55 +00:00
12 lines
531 B
TOML
12 lines
531 B
TOML
# Snapshots directory
|
|
dest_dir = "/.snapshots"
|
|
# Directory to be snapshot-ed
|
|
source_dir = "/home"
|
|
# SQLite database file PATH where snapshots metadata will be stored. Created if not exists
|
|
database_file = "/.snapshots/rusnapshot.db"
|
|
# Prefix for the snapshots, they will be saved in the format prefix-$current_date
|
|
snapshot_prefix = "home"
|
|
# Last snapshots to keep. If prefix is specified then only the snapshots with that prefix will be deleted
|
|
keep_only = 3
|
|
# Machine name to be used in the snapshots metadata
|
|
machine = "Oribos"
|