summaryrefslogtreecommitdiffstats
path: root/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp')
-rw-r--r--src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp b/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp
new file mode 100644
index 00000000..63a2e949
--- /dev/null
+++ b/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp
@@ -0,0 +1,6 @@
+if $operatingsystem == 'Ubuntu' {
+ exec { "install collectd":
+ command => "apt-get install -y collectd",
+ path => "/usr/bin:/usr/sbin:/bin:/sbin";
+ }
+}