Re: [Bacula-users] query for file sizes in a job

2014-12-04 Thread Silver Salonen
Some more tweaks to the script. BTW, I think it would be a useful feature for Bacula-Web too, but it should have also some searching and pagination possibilities (should be relatively easy to add to this script too actually). -- Silver On 12/04/2014 12:42 PM, Silver Salonen wrote: > Hi. > > Base

[Bacula-users] query for file sizes in a job

2014-12-04 Thread Silver Salonen
Hi. Based on the PHP script in the ancient e-mail thread I tweaked it a bit for using with MySQL (the original was for SQLite). See it attached. -- Silver <> -

Re: [Bacula-users] query for file sizes in a job

2011-10-10 Thread ganiuszka
job_details = $this->get_job_details(); foreach($job_details as $val) { print $val['size'] . ' | ' . $val['path'] . "\n"; } } } function usage() { echo ' ' . basename(__FILE__)

Re: [Bacula-users] query for file sizes in a job

2011-10-07 Thread Jeff Shanholtz
AM To: Bacula-users@lists.sourceforge.net Subject: Re: [Bacula-users] query for file sizes in a job On 10/06/2011 12:36 PM, Jeff Shanholtz wrote: > I'm currently tuning my exclude rules and one of the things I want to > do is make sure I'm not backing up any massive files that don't nee

Re: [Bacula-users] query for file sizes in a job

2011-10-07 Thread Christian Manal
Am 07.10.2011 19:43, schrieb John Drescher: > On Fri, Oct 7, 2011 at 12:51 PM, Jeff Shanholtz > wrote: >> I appreciate that, but either you misunderstood what I'm trying to do or I >> just can't seem to make sense of the search results I'm getting as they >> apply to my issue. I did see one web p

Re: [Bacula-users] query for file sizes in a job

2011-10-07 Thread Stuart McGraw
On 10/06/2011 12:36 PM, Jeff Shanholtz wrote: > I’m currently tuning my exclude rules and one of the things I > want to do is make sure I’m not backing up any massive files > that don’t need to be backed up. Is there any way to get bacula > to list file sizes along with the file names since llist

Re: [Bacula-users] query for file sizes in a job

2011-10-07 Thread John Drescher
On Fri, Oct 7, 2011 at 12:51 PM, Jeff Shanholtz wrote: > I appreciate that, but either you misunderstood what I'm trying to do or I > just can't seem to make sense of the search results I'm getting as they > apply to my issue. I did see one web page that decodes the base64 string > from a member o

Re: [Bacula-users] query for file sizes in a job

2011-10-07 Thread Jeff Shanholtz
y, October 07, 2011 6:12 AM To: Jeff Shanholtz; bacula-users Subject: Re: [Bacula-users] query for file sizes in a job 2011/10/6 Jeff Shanholtz : > I'm currently tuning my exclude rules and one of the things I want to > do is make sure I'm not backing up any massive files that don&

Re: [Bacula-users] query for file sizes in a job

2011-10-07 Thread John Drescher
2011/10/6 Jeff Shanholtz : > I’m currently tuning my exclude rules and one of the things I want to do is > make sure I’m not backing up any massive files that don’t need to be backed > up. Is there any way to get bacula to list file sizes along with the file > names since llist doesn’t do this? >

[Bacula-users] query for file sizes in a job

2011-10-06 Thread Jeff Shanholtz
I'm currently tuning my exclude rules and one of the things I want to do is make sure I'm not backing up any massive files that don't need to be backed up. Is there any way to get bacula to list file sizes along with the file names since llist doesn't do this? -