From 77140c57833e2c489303f0a9ff09dc0c71b59b35 Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Mon, 16 Nov 2020 20:26:06 -0500 Subject: [PATCH] Add YouTube backup job to bacula --- other/system.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/other/system.conf b/other/system.conf index f3907ed..e98ef97 100644 --- a/other/system.conf +++ b/other/system.conf @@ -63,3 +63,20 @@ FileSet { File = "/mnt/Git/" } } + +Job { # Backup Everything in YouTube + Name = "Backup-YouTube" + JobDefs = "Default-System-Job" + FileSet = "YouTube" +} + +# YouTube storage location on zinc +FileSet { + Name = "YouTube" + Include { + Options { + signature = MD5 + } + File = "/mnt/YouTube/" + } +}