client optionset doen't work

TSMRONALD

Newcomer
Joined
Jul 7, 2008
Messages
2
Reaction score
0
Points
0
Location
Holland, Hattem
Hello,

I need some help by configuration the client optionset.
We have a /SYSAPOT/datap, in this directory all the data must not be backupped, only two directories en five files.

I have made this clientoptionset:

19 exclude '/.../datap/*'
20 exclude.dir '/.../datap/*'
21 include.dir '/.../datap/.ssh'
22 include.dir '/.../datap/.putdir'
23 include.file '/.../datap/.bash_history'
24 include.file '/.../datap/.profile'
25 include.file '/.../datap/.sh_history'
26 include.file '/.../datap/.rhosts'
27 include.file '/.../datap/.index'

I have, after making a backup, the five files, but not the directories with their files. And when i make a new directory in /SYSAPOT/datap/newdirectory, this directory will be backupped, en that's wrong.

What do i wrong ?
Kind regards,

Ronald.
 
Hello Toxy13,

I have fixed the problem:

exclude '/.../datap/.../*'
include '/.../datap/.ssh/*'
include '/.../datap/.putdir/*'
include '/.../datap/.*'

Thank you for your reply.
 
TSMRONALD-


19 exclude '/.../datap/*'
20 exclude.dir '/.../datap/*'
21 include.dir '/.../datap/.ssh' => *.ssh
22 include.dir '/.../datap/.putdir' => *.putdir
23 include.file '/.../datap/.bash_history' => *.bach_history
24 include.file '/.../datap/.profile' => *.profile
25 include.file '/.../datap/.sh_history' => *.sh_history
26 include.file '/.../datap/.rhosts' => *.rhosts
27 include.file '/.../datap/.index' => *.index

Unless you want to specify the exact file named...

Good luck...
 
Back
Top