Use proper type for keep_only.

This commit is contained in:
Eduard Tolosa 2024-02-05 03:26:22 -05:00
parent ddcc8d58d9
commit a231f177b5
3 changed files with 3 additions and 3 deletions

View file

@ -12,4 +12,4 @@ 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 = "2"
keep_only = 2

View file

@ -7,4 +7,4 @@ database_file = "/var/lib/rusnapshot/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 = "2"
keep_only = 2

View file

@ -7,4 +7,4 @@ database_file = "/var/lib/rusnapshot/rusnapshot.db"
# Prefix for the snapshots, they will be saved in the format prefix-$current_date
snapshot_prefix = "root"
# Last snapshots to keep. If prefix is specified then only the snapshots with that prefix will be deleted
keep_only = "2"
keep_only = 2