Puppet Class: docker::install::tp
- Defined in:
- manifests/install/tp.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'manifests/install/tp.pp', line 1
class docker::install::tp (
Variant[Boolean,String] $ensure = present,
Hash $confs = { },
Hash $dirs = { },
) {
include ::docker
tp::install { 'docker':
options_hash => $::docker::options,
settings_hash => $::docker::module_settings,
data_module => $::docker::data_module,
conf_hash => $confs,
dir_hash => $dirs,
auto_conf => $::docker::auto_conf,
}
}
|