rusnapshot/examples/config-templates/config-all.toml

17 lines
666 B
TOML

# Example configuration file for rusnapshot
# These are all the current available options
# Snapshots directory
dest_dir = "/.snapshots"
# Directory to be snapshot-ed
source_dir = "/"
# 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 = "root"
# Snapshots identifier
snapshot_kind = "weekly"
# 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"