added code
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Name des lokalen Pools
|
||||
local_pool = 'tank'
|
||||
|
||||
# Name der Backup-Platten und UUID der Partition
|
||||
backup_pool = {
|
||||
'backup1': '603eeae5-1f16-4d1f-8dc5-8b5368c0cdd4',
|
||||
'backup2': '8632e9e4-3d6c-4627-8c28-ec72f52db281',
|
||||
}
|
||||
|
||||
# Datasets, die nicht gesichert werden sollen
|
||||
do_not_backup = [
|
||||
'tank/cache',
|
||||
'tank/docker',
|
||||
]
|
||||
|
||||
# überprüfe ob neue Snapshots mit diesen String-Teilen vorliegen
|
||||
snapshot_tag = ['znap', 'monthly']
|
||||
|
||||
# wie viele Snapshots von jedem Intervall sollen beibehalten werden?
|
||||
# dies sollte der Serverkonfiguration zu zfs-auto-snapshots folgen
|
||||
keep = {
|
||||
'frequent' : 4,
|
||||
'hourly' : 24,
|
||||
'daily' : 31,
|
||||
'weekly' : 8,
|
||||
'monthly' : 12,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user