Puppet Class: bareos::profile::director::pool

Defined in:
manifests/profile/director/pool.pp

Overview

Class: bareos::profile::director::pool

Some default pools



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'manifests/profile/director/pool.pp', line 3

class bareos::profile::director::pool {
  ::bareos::director::pool {'Differential':
    pool_type            => 'Backup',
    recycle              => true,
    auto_prune           => true,
    volume_retention     => '90 days',
    maximum_volume_bytes => '10G',
    maximum_volumes      => 100,
    label_format         => 'Differential-',
  }

  ::bareos::director::pool {'Full':
    pool_type            => 'Backup',
    recycle              => true,
    auto_prune           => true,
    volume_retention     => '365 days',
    maximum_volume_bytes => '50G',
    maximum_volumes      => 100,
    label_format         => 'Full-',
  }

  ::bareos::director::pool {'Incremental':
    pool_type            => 'Backup',
    recycle              => true,
    auto_prune           => true,
    volume_retention     => '30 days',
    maximum_volume_bytes => '1G',
    maximum_volumes      => 100,
    label_format         => 'Incremental-',
  }

  ::bareos::director::pool {'Scratch':
    pool_type => 'Scratch',
  }
}