36 lines
490 B
Plaintext
36 lines
490 B
Plaintext
# Bacula config Backup
|
|
FileSet {
|
|
Name = "MyFirstFileSet"
|
|
Include {
|
|
Options {
|
|
signature=MD5
|
|
}
|
|
File = /etc/bacula/
|
|
}
|
|
Exclude {
|
|
File = *~
|
|
}
|
|
}
|
|
|
|
# This is the backup of the catalog
|
|
FileSet {
|
|
Name = "Catalog"
|
|
Include {
|
|
Options {
|
|
signature = MD5
|
|
}
|
|
File = "/var/lib/postgresql/12/main"
|
|
}
|
|
}
|
|
|
|
# Backup proxmox backups
|
|
FileSet {
|
|
Name = "ProxmoxBackups"
|
|
Include {
|
|
Options {
|
|
signature = MD5
|
|
}
|
|
File = "/mnt/Proxmox/"
|
|
}
|
|
}
|