Removes unused callhome configuration

Change-Id: Id829c09c0567619dd8830a9f0a1264c32b39eb88
This commit is contained in:
Adrian Moreno 2016-01-13 15:18:13 +01:00
parent 312f7c00ac
commit 71faf9842b
3 changed files with 1 additions and 18 deletions

View File

@ -7,7 +7,6 @@ class scaleio_fuel::mdm {
$tb_ip = $scaleio_fuel::params::tb_ip
$cluster_name = $scaleio_fuel::params::cluster_name
$sio_sds_device = $scaleio_fuel::params::sio_sds_device
$callhome_cfg = $scaleio_fuel::params::callhome_cfg
class {'::scaleio':
password => $admin_password,
@ -17,7 +16,6 @@ class scaleio_fuel::mdm {
tb_ip => $tb_ip,
cluster_name => $cluster_name,
sio_sds_device => $sio_sds_device,
callhome_cfg => $callhome_cfg,
components => ['mdm','gw','sds','sdc','callhome'],
components => ['mdm','gw','sds','sdc'],
}
}

View File

@ -48,17 +48,4 @@ class scaleio_fuel::params
notify {"SDS devices: ${sio_sds_device}": }
#TODO: Get callhome information from UI
$callhome_cfg = {
'email_to' => 'emailto@address.com',
'email_from' => 'emailfrom@address.com',
'username' => 'monitor_username',
'password' => 'monitor_password',
'customer' => 'customer_name',
'smtp_host' => 'smtp_host',
'smtp_port' => 'smtp_port',
'smtp_user' => 'smtp_user',
'smtp_password' => 'smtp_password',
'severity' => 'error',
}
}

View File

@ -6,7 +6,6 @@ class scaleio_fuel::tb {
$mdm_ip = $scaleio_fuel::params::mdm_ip
$tb_ip = $scaleio_fuel::params::tb_ip
$sio_sds_device = $scaleio_fuel::params::sio_sds_device
$callhome_cfg = $scaleio_fuel::params::callhome_cfg
class {'::scaleio':
password => $admin_password,
@ -16,7 +15,6 @@ class scaleio_fuel::tb {
tb_ip => $tb_ip,
sio_sds_device => $sio_sds_device,
sds_ssd_env_flag => true,
callhome_cfg => $callhome_cfg,
components => ['tb','gw','sds','sdc'],
}
}