Puppet Class: example::config
- Inherits:
- example
- Defined in:
- manifests/config.pp
Overview
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/config.pp', line 4
class example::config inherits example {
notice('Running config.pp')
file { $example::file_name :
path => "/opt/puppetlabs/puppet/modules/example/manifests/${example::file_name}",
ensure => 'present',
content => $example::output_text,
}
}
|