Bacula-users

Re: [Bacula-users] Help with Tape Eject

2014-10-21 07:48:38
Subject: Re: [Bacula-users] Help with Tape Eject
From: Josh Fisher <jfisher AT pvct DOT com>
To: bacula-users AT lists.sourceforge DOT net
Date: Tue, 21 Oct 2014 07:45:03 -0400
On 10/20/2014 6:53 PM, heitor AT bacula.com DOT br wrote:
Ana and Steven,

If you have a bacula-fd installed on the storage machine you can always use:

ClientRunBeforeJob = "mt -f /dev/st0 eject"

Unless it has changed, a Type=Admin job cannot execute scripts on the client machine. To run a script on a client as a "psuedo" admin job, define a second Type=Backup job for the SD that selects no files to backup and add the ClientRunAfterJob script to that job, scheduling/prioritizing the "psuedo" admin job to be the last job to run.

I also suggest redirecting stdXXX for the mt command and running it in the background.

RunScript {
    RunsWhen = After
    RunsOnClient = Yes
    Command = "/usr/local/bin/bacula-eject.sh"
}

#!/bin/bash
# /usr/local/bin/my-eject.sh on the SD machine
mt -f /dev/st0 eject >/var/log/bacula/eject.log 2>&1 < /dev/null &
# eof



De: "Ana Emília M. Arruda" <emiliaarruda AT gmail DOT com>
Para: "Steven Hammond" <bcf1689 AT gmail DOT com>
Cc: "Bacula-users AT lists.sourceforge DOT net" <bacula-users AT lists.sourceforge DOT net>
Enviadas: Segunda-feira, 20 de outubro de 2014 20:11:01
Assunto: Re: [Bacula-users] Help with Tape Eject

Hi Steven,

Maybe this could help you:

RunAfterJob = "ssh user@yourstoragedaemonhost mt -f /dev/st0 eject"

It´s defined on the last backup job.

Regards,
Ana

On Mon, Oct 20, 2014 at 2:58 PM, Steven Hammond <bcf1689 AT gmail DOT com> wrote:
I had a script that ran after the last job that would release, rewind,
and eject the tape.  It worked great.  However, I've rebuilt the server
and now have the STORAGE DAEMON and DIRECTOR on two separate servers.
Any ideas how can now eject the tape on the storage server after the
last job runs on the director?

Steve Hammond


------------------------------------------------------------------------------
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
_______________________________________________
Bacula-users mailing list
Bacula-users AT lists.sourceforge DOT net
https://lists.sourceforge.net/lists/listinfo/bacula-users
<Prev in Thread] Current Thread [Next in Thread>