No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

collectd.yml 317B

123456789
  1. - name: Install collectd
  2. apt: pkg=collectd state=installed
  3. - name: Copy collectd configuration file into place
  4. template: src=etc_collectd_collectd.conf.j2 dest=/etc/collectd/collectd.conf
  5. notify: restart collectd
  6. - name: Ensure collectd is a system service
  7. service: name=collectd state=started enabled=true