On 2019-04-12 05:45, Martin Simmons wrote:
I suggest running the rclone-changer in a shell to see what it prints.

You could also try replacing /usr/local/bin/rclone-changer in the Changer Command with a shell script that logs its arguments and output like this
(untested):

#!/bin/sh
echo "Arguments: $@" > /tmp/test.log
/usr/local/bin/rclone-changer "$@" 2>&1 | tee -a /tmp/test.log

__Martin


Good idea!

That has gotten me further.

It looks like the script was not taking the defined variables (inserted at the top of the script) as described in the on-line documentation. It was instead using the values that were hard coded later down in the script. I set the "default" values later down in the script to match those that were defined at the top of the script. This has got the Virtual Tape files created and labeled.

Thank You.


_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to