On Monday 03 July 2006 18:31, Sergey Velikanov [Intelsoft] wrote:
> Hi
>
> I'am newbie in Bacula, could you answeron my two questions.
>
> 1) How can I define only dir name to backup? For example I've dir /proc,
> I don't want backup it contents, but I want that when I restore my backup,I
> receive empty dir /proc in root of backup path.
>

I backup just directory tree in /var, not the actual files; this is part of my 
config (Bacula 1.38.8):

fileset {
    name = srv1-fileset
    include {
        options {
            signature = MD5
            compression = GZIP
        }
#list of files to include
        File = "</usr/local/opt/bacula/etc/config/srv1.fstincl"
    }
#directory structure, no files
    Include {
        options {
            wilddir = *
            signature = MD5
        }
        options {
            wildfile = *
            exclude = yes
        }
        File = "/var"
    }
    Exclude {
#list of files to exclude
        File = "</usr/local/opt/bacula/etc/config/srv1.fstexcl"
    }
}

-- 
WBR, 
Vasily
http://www.academ.org
mailto: <[EMAIL PROTECTED]>

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bacula-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to