summaryrefslogtreecommitdiffstats
path: root/modules/tick/manifests/client/plugin.pp
blob: f9c2f83fe0d4a215cb06529c487bfee760e72212 (plain) (blame)
1
2
3
4
5
6
7
8
9
define tick::client::plugin($opts = {}) {
  include tick::client

  file { "/etc/telegraf/telegraf.d/${name}.conf":
    content => template("tick/plugin.conf"),
    require => File["/etc/telegraf/telegraf.d"],
    notify => Service["telegraf"];
  }
}