Puppet Class: znapzend::imports
- Defined in:
- manifests/imports.pp
Summary
Class for collecting and created znapzend backup plans to import onto datasets.Overview
Class znapzend::imports
Class for collecting and created znapzend backup plans to import onto datasets. Data is either passed via the imports plans parameter or via hiera.
10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'manifests/imports.pp', line 10
class znapzend::imports (
Hash $plans = {},
) {
include ::znapzend
if length($plans) {
$plans.each |String $key, Hash $options| {
znapzend::import { $key:
options => $options,
}
}
}
}
|