Puppet Class: graphite_powershell::config
- Defined in:
- manifests/config.pp
Overview
Class graphite_powershell::config
This private class is called from ‘graphite_powershell` It manages the graphite stats config files
10 11 12 13 14 15 16 17 18 |
# File 'manifests/config.pp', line 10
class graphite_powershell::config {
file { "${graphite_powershell::params::install_dir}/StatsToGraphiteConfig.xml":
ensure => present,
owner => 'SYSTEM',
content => template('graphite_powershell/StatsToGraphiteConfig.xml.erb'),
notify => Service['GraphitePowerShell'],
}
}
|