On Tuesday 22 March 2005 07:41 pm, David Fuchs wrote:
> 22-Mar 17:26 davidfuchs-dir: ERROR TERMINATION at inc_conf.c:495
> Config error: Regex compile error. ERR=repetition-operator operand invalid
>
>             : line 119, col 35 of file
> /usr/local/bacula/etc/bacula-dir.conf RegexFile = "^.?*$"
>
> So I changed the regex to
>
>     RegexFile = "^.*$"

David,

The regex that you used "^.*$", in addition to files beginning with "." is 
also picking up  the current directory ".", hence you're backing up all files 
in the directory. The regex that Kern suggested, "^.?*$" requires at least 
one character after the leading "." to avoid this.

I know next to nothing about file exclusions, so this is just a guess, but you 
might try "^.?*" (without the trailing $).

HTH's

cmr
-- 
Debian 'Sarge': Registered Linux User #241964
----
"More laws, less justice." -- Marcus Tullius Ciceroca, 42 BC
--------


-------------------------------------------------------
This SF.net email is sponsored by: 2005 Windows Mobile Application Contest
Submit applications for Windows Mobile(tm)-based Pocket PCs or Smartphones
for the chance to win $25,000 and application distribution. Enter today at
http://ads.osdn.com/?ad_idh82&alloc_id148&op=click
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to