Luiz Gustavo S. Costa <luizgustavo <at> luizgustavo.pro.br> writes:

> 
> Hi list,
> 
> I'm trying to set config the copy to remote sd, with new version of
> BareOS, but, i received this error message in start directory:
> 
> Starting Bareos Director services: 15-Jan 16:58 bareos-dir: ERROR
> TERMINATION at parse_conf.c:552
> Config error: Could not find config Resource none referenced on line
> 38 :    Client = None
> 
>             : line 38, col 17 of file
/etc/bareos/bareos-dir.conf.d/nfs-01a.conf
>    Client = None
> 

Both Bacula and Bareos until version 13.2
(it changed in 13.4 but that is not released other the as
bleeding edge nightly packages) A Job always needs a
Client and Fileset although they are not used in a
Copy/Migration Job.

For that you normally use the None dummy Client and Fileset.

So you need to add the following:

# Fake fileset for copy jobs
Fileset {
  Name = None
  Include {
    Options {
      signature = MD5
    }
  }
}

# Fake client for copy jobs
Client {
  Name = None
  Address = localhost
  Password = "NoNe"
  Catalog = MyCatalog
}

It doesn't do much but it makes the config engine happy as its
demands a Client and Fileset for every Job.

-- 
Marco van Wieringen                   [email protected]
Bareos GmbH & Co. KG                  Phone: +49-221-63069389
http://www.bareos.com                     

Sitz der Gesellschaft: Köln | Amtsgericht Köln: HRA 29646
Komplementär: Bareos Verwaltungs-GmbH
Geschäftsführer: Stephan Dühr, M. Außendorf, J. Steffens,
                 P. Storz, M. v. Wieringen

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to