diff options
Diffstat (limited to 'fuel-plugin-vsperf/deployment_scripts/puppet')
-rw-r--r-- | fuel-plugin-vsperf/deployment_scripts/puppet/manifests/vsperf-install.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fuel-plugin-vsperf/deployment_scripts/puppet/manifests/vsperf-install.pp b/fuel-plugin-vsperf/deployment_scripts/puppet/manifests/vsperf-install.pp new file mode 100644 index 00000000..bd38dbb7 --- /dev/null +++ b/fuel-plugin-vsperf/deployment_scripts/puppet/manifests/vsperf-install.pp @@ -0,0 +1,11 @@ +$fuel_settings = parseyaml(file('/etc/astute.yaml')) +$master_ip = $::fuel_settings['master_ip'] + +exec { "wget vsperf": + command => "wget http://$master_ip:8080/plugins/fuel-plugin-vsperf-1.0/repositories/ubuntu/vswitchperf.tgz -O /opt/vswitchperf.tgz", + path => "/usr/bin:/usr/sbin:/bin:/sbin", +} +exec { "untar vsperf": + command => "tar xf /opt/vswitchperf.tgz -C /opt", + path => "/usr/bin:/usr/sbin:/bin:/sbin", +} |