Puppet Class: storm::storage
- Defined in:
- manifests/storage.pp
Summary
Init testbed storage area's directoriesOverview
15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'manifests/storage.pp', line 15
class storm::storage (
Array[String] $root_directories = ['/storage'],
) {
$root_directories.each | $path | {
storm::rootdir { $path:
path => $path,
}
}
}
|