]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/bacula/templates/per-client.conf.erb
4f31e5220f56b65a4fbe9939a36ce79fa4f8944b
[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   Maximum Concurrent Jobs = 1
12 }
13
14 # Client (File Services) to backup
15 Client {
16   Name = <%= bacula_client_name %>
17   Address = <%= client %>
18   FDPort = <%= bacula_client_port %>
19   Catalog = MyCatalog
20   Password = "<%= bacula_client_secret %>"
21   File Retention = 30 days            # 30 days
22   Job Retention = 6 months            # six months
23   AutoPrune = yes                     # Prune expired Jobs/Files
24 }