From 0ed866b19209dfd2175deaabe9944c6089b6b18a Mon Sep 17 00:00:00 2001 From: Bruno Friedmann Date: Wed, 20 Apr 2022 11:31:32 +0200 Subject: [PATCH] doc: fix gh link in contrib PythonFdPlugin (bug #1450) Signed-off-by: Bruno Friedmann --- .../Plugins/FileDaemonPlugins/PythonFdPlugin.rst.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/manuals/source/TasksAndConcepts/Plugins/FileDaemonPlugins/PythonFdPlugin.rst.inc b/docs/manuals/source/TasksAndConcepts/Plugins/FileDaemonPlugins/PythonFdPlugin.rst.inc index f1e4ec2edeb..2455116484c 100644 --- a/docs/manuals/source/TasksAndConcepts/Plugins/FileDaemonPlugins/PythonFdPlugin.rst.inc +++ b/docs/manuals/source/TasksAndConcepts/Plugins/FileDaemonPlugins/PythonFdPlugin.rst.inc @@ -61,14 +61,14 @@ Example: Name = "option" Include { Options { - Signature = MD5 # calculate md5 checksum per file + Signature = MD5 Plugin = "python3" ":module_path=/usr/lib/bareos/plugins" - ":module_name=bareos-fd-file-interact" + ":module_name=bareos_option_example" } File = "/etc" File = "/usr/lib/bareos/plugins" } } -This plugin bareos-fd-file-interact from https://github.com/bareos/bareos/tree/master/contrib/fd-plugins/options-plugin-sample has a method that is called before and after each file that goes into the backup, it can be used as a template for whatever plugin wants to interact with files before or after backup. +This plugin from https://github.com/bareos/bareos/tree/master/contrib/fd-plugins/bareos_option_example has a method that is called before and after each file that goes into the backup, it can be used as a template for whatever plugin wants to interact with files before or after backup.