Defined Type: bacula::schedule
- Defined in:
- manifests/schedule.pp
Summary
Define a Bacula ScheduleOverview
Creates a schedule to which jobs and jobdefs can adhere.
17 18 19 20 21 22 23 24 25 |
# File 'manifests/schedule.pp', line 17
define bacula::schedule (
Array[String[1]] $runs,
Stdlib::Absolutepath $conf_dir = $bacula::conf_dir,
) {
concat::fragment { "bacula-schedule-${name}":
target => "${conf_dir}/conf.d/schedule.conf",
content => epp('bacula/schedule.conf.epp', { name => $title, runs => $runs }),
}
}
|