Defined Type: backup::monthlyjobdefaults

Defined in:
modules/backup/manifests/monthlyjobdefaults.pp

Overview

SPDX-License-Identifier: Apache-2.0 Defaults depend on both the day and the pool

Parameters:



3
4
5
6
7
8
9
10
11
12
# File 'modules/backup/manifests/monthlyjobdefaults.pp', line 3

define backup::monthlyjobdefaults(
    String $pool,
    String $day,
) {

    bacula::director::jobdefaults { "Monthly-1st-${day}-${pool}":
        when => "Monthly-1st-${day}",
        pool => $pool,
    }
}