Defined Type: hashfile::ini
- Defined in:
- manifests/ini.pp
Summary
Defined type provides an implementation of the hash2ini function, creating an INI file from the input hashOverview
24 25 26 27 28 29 30 31 32 |
# File 'manifests/ini.pp', line 24
define hashfile::ini (
Hash $file,
Hash $data,
Hash $options = {},
) {
File {$name:
* => merge($file, content => hash2ini($data, $options)),
}
}
|