[Bacula-users] Bacula-Web 8.2.0 released

2019-01-07 Thread Davide Franco
Dear all, I'm pleased to inform you that Bacula-Web 8.2.0 is available from now. This version Include 2 new features and 7 bug fixes The release notes is available here https://www.bacula-web.org/2019/01/06/bacula-web-8-2-0/ Latest documentation is available here http://docs.bacula-web.org/ If

[Bacula-users] Bacula9.4.1 rpm Binaries package

2019-01-07 Thread KEN SAWADA
Hi Bacula 9.4.1 's rpm package will not be released, but will Debian, Ubuntu only release binary packages in the future? Since CentOS is most used in Japan, I am waiting for the rpm package. Best regards Ken Sawada ___ Bacula-users mailing list Bacula-

Re: [Bacula-users] Run ClientBeforeJob script in background instead of waiting for it.

2019-01-07 Thread Martin Simmons
Your script redirects stderr to the original stdout of the script. To redirect both to /dev/null, the 2>&1 must follow the >/dev/null like this: nohup caffeinate -s bacula-idle-watch.sh >/dev/null 2>&1 /dev/null 2>&1 On Fri, 4 Jan 2019 11:36:06 -0800, David Brodbeck said: > > This is drivin

Re: [Bacula-users] Run ClientBeforeJob script in background instead of waiting for it.

2019-01-07 Thread David Brodbeck
Hmm, good catch on the redirect, but it still doesn't work. Neither does adding the exec line. Running lsof on the caffeinate process shows stdin, stdout, and stderr are properly connected to /dev/null; same with bacula-idle-watch.sh. I can't determine what the bacula-caffeinate.sh script's file h

Re: [Bacula-users] Run ClientBeforeJob script in background instead of waiting for it.

2019-01-07 Thread Wanderlei Huttel
Hello David I know that is not an elegant way, but you could try to execute a script calling another one I don't know if will works, but you can try. #!/bin/bash nohup caffeinate -s bacula-idle-watch.sh >/dev/null 2>&1 http://www.bacula.com.br Em seg, 7 de jan de 2019 às 17:06, David Brodbeck e

Re: [Bacula-users] Run ClientBeforeJob script in background instead of waiting for it.

2019-01-07 Thread David Brodbeck
Forgot to CC this to the list, but it's the best solution I've gotten so far. It works, but on macOS you have to turn the 'at' service on first. I ended up with this: #!/bin/bash PATH=/bin:/usr/bin:/usr/local/bin # Script to prevent system sleep while bacula is working. # see bacula-idle-watch.s

Re: [Bacula-users] Run ClientBeforeJob script in background instead of waiting for it.

2019-01-07 Thread Dimitri Maziuk via Bacula-users
On 1/7/19 12:32 PM, David Brodbeck wrote: > Hmm, good catch on the redirect, but it still doesn't work. Neither does > adding the exec line. nohup just does what is says: no HUP. You may want to try `CMD & ; disown` if your shell has disown, or `setsid CMD`. You'd still ned the redirects. Or rewr