Defined Type: backup::hourlyschedule
- Defined in:
- modules/backup/manifests/hourlyschedule.pp
Overview
SPDX-License-Identifier: Apache-2.0 Same for hourly backups
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'modules/backup/manifests/hourlyschedule.pp', line 3
define backup::hourlyschedule(
String $day,
) {
bacula::director::schedule { "Hourly-${day}":
runs => [
{ 'level' => 'Full',
'at' => "${day} at 02:05",
},
{ 'level' => 'Incremental',
'at' => 'hourly',
},
],
}
}
|