diff options
author | Guo Ruijing <ruijing.guo@intel.com> | 2016-07-15 06:24:12 +0800 |
---|---|---|
committer | Guo Ruijing <ruijing.guo@intel.com> | 2016-07-18 02:28:50 +0800 |
commit | 51dc2d1a638855bcab4f43b7b7823fae8d9ea4a5 (patch) | |
tree | 35966fc125eb013a6d588d523ec27a8f70390b01 /src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp | |
parent | 6a0837238ff13d3294e5a7181fc3de40e3094625 (diff) |
Add collectd build & installation
Change-Id: I9305715bae269fb2e65a083e4e19f1ed6c9b8331
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
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.pp | 5 |
1 files changed, 2 insertions, 3 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 index 63a2e949..ffe3d6d9 100644 --- a/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp +++ b/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd_install.pp @@ -1,6 +1,5 @@ if $operatingsystem == 'Ubuntu' { - exec { "install collectd": - command => "apt-get install -y collectd", - path => "/usr/bin:/usr/sbin:/bin:/sbin"; + package { 'collectd': + ensure => installed, } } |