]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/bacula/templates/per-client.conf.erb
We do not need a restore job per client
[dsa-puppet.git] / modules / bacula / templates / per-client.conf.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5 #  For Bacula release 5.0.1 (24 February 2010) -- debian 5.0.4
6
7 Job {
8   Name = "<%= client %>"
9   JobDefs = "Standardbackup"
10   Client = <%= bacula_client_name %>
11 }
12
13 # Client (File Services) to backup
14 Client {
15   Name = <%= bacula_client_name %>
16   Address = <%= client %>
17   FDPort = <%= bacula_client_port %>
18   Catalog = MyCatalog
19   Password = "<%= bacula_client_secret %>"
20   File Retention = 30 days            # 30 days
21   Job Retention = 6 months            # six months
22   AutoPrune = yes                     # Prune expired Jobs/Files
23 }