Puppet Class: rtpengine::config
- Inherits:
- rtpengine
- Defined in:
- manifests/config.pp
Summary
A short summary of the purpose of this classOverview
A description of what this class does
7 8 9 10 11 12 13 14 |
# File 'manifests/config.pp', line 7
class rtpengine::config inherits rtpengine {
require rtpengine::install
file { '/etc/rtpengine/rtpengine.conf':
ensure => file,
mode => '0644',
content => template('rtpengine/etc/rtpengine/rtpengine.conf.erb')
}
}
|