Defined Type: backup::monthlyjobdefaults
- Defined in:
- modules/backup/manifests/monthlyjobdefaults.pp
Overview
Defaults depend on both the day and the pool
2 3 4 5 6 7 8 9 10 11 |
# File 'modules/backup/manifests/monthlyjobdefaults.pp', line 2
define backup::monthlyjobdefaults(
String $pool,
String $day,
) {
bacula::director::jobdefaults { "Monthly-1st-${day}-${pool}":
when => "Monthly-1st-${day}",
pool => $pool,
}
}
|