Change into bacula-dir directory

This is to avoid using weird git features when enabling git on the host.
This commit is contained in:
Joe S
2020-11-06 22:49:22 -05:00
parent cc334201aa
commit 3d1f5e7554
79 changed files with 3 additions and 2324 deletions

36
other/archive.conf Normal file
View File

@@ -0,0 +1,36 @@
# These are mainly jobs for archive.
Job { # Archive Obelisk
Name = "Archive-Obelisk"
JobDefs = "Default-Archive-Job"
FileSet = "Obelisk Archive"
}
# Obelisk fileset
FileSet {
Name = "Obelisk Archive"
Include {
Options {
signature = MD5
compression=GZIP
}
File = "/mnt/Archive/Obelisk/"
}
}
Job { # Archive Magnesium
Name = "Archive-Magnesium"
JobDefs = "Default-Archive-Job"
FileSet = "Magnesium Archive"
}
# Archive for Magnesium
FileSet {
Name = "Magnesium Archive"
Include {
Options {
signature = MD5
}
File = "/mnt/Archive/Magnesium/"
}
}

65
other/system.conf Normal file
View File

@@ -0,0 +1,65 @@
# These are jobs run for vms, storage, etc
Job { # Backup Proxmox VZdumps
Name = "Backup-Proxmox"
JobDefs = "Default-System-Job"
FileSet = "Proxmox Backups"
}
# Proxmox backup fileset
FileSet {
Name = "Proxmox Backups"
Include {
Options {
wilddir = "*.tmp" # Ignore directories matching *.tmp
signature = MD5
exclude = yes
}
File = "/mnt/Proxmox"
}
}
Job { # Backup Robotics Team's Files
Name = "Backup-Robotics"
JobDefs = "Default-System-Job"
FileSet = "Google-Drive Robotics"
Messages = RoboticsMail
}
# 1721's google drive
FileSet {
Name = "Google-Drive Robotics"
Include {
Options {
signature = MD5
}
File = "/mnt/1721_Drive/"
}
}
messages { # Send mail to the robotics team
name = RoboticsMail
mail = kenwood364@gmail.com = all, !skipped
file = "/etc/bacula/scripts/webhooks/RoboticsMail.md" = all, !skipped
console = all, !skipped, !saved
catalog = all
}
Job { # Backup Everything in gitea
Name = "Backup-Gitea"
JobDefs = "Default-System-Job"
FileSet = "Gitea"
}
# Gittea storage location on zinc
FileSet {
Name = "Gitea"
Include {
Options {
signature = MD5
}
File = "/mnt/Git/"
}
}