1
0
mirror of https://github.com/rancher/os.git synced 2025-08-30 21:26:09 +00:00

Merge pull request #2175 from niusmallnan/issues-2168

Only enable open-vm-tools serivce for vmware
This commit is contained in:
niusmallnan 2017-12-13 10:46:51 +08:00 committed by GitHub
commit bbe86be115
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -486,23 +486,25 @@ func enableHypervisorService(cfg *config.CloudConfig, hypervisorName string) {
return
}
// only enable open-vm-tools for vmware
// these services(xenhvm-vm-tools, kvm-vm-tools, hyperv-vm-tools and bhyve-vm-tools) don't exist yet
if hypervisorName == "vmware" {
hypervisorName = "open"
}
serviceName := hypervisorName + "-vm-tools"
if !cfg.Rancher.HypervisorService {
log.Infof("Skipping %s as `rancher.hypervisor_service` is set to false", serviceName)
return
}
serviceName := hypervisorName + "-vm-tools"
if !cfg.Rancher.HypervisorService {
log.Infof("Skipping %s as `rancher.hypervisor_service` is set to false", serviceName)
return
}
// Check removed - there's an x509 cert failure on first boot of an installed system
// check quickly to see if there is a yml file available
// if service.ValidService(serviceName, cfg) {
log.Infof("Setting rancher.services_include. %s=true", serviceName)
if err := config.Set("rancher.services_include."+serviceName, "true"); err != nil {
log.Error(err)
// Check removed - there's an x509 cert failure on first boot of an installed system
// check quickly to see if there is a yml file available
// if service.ValidService(serviceName, cfg) {
log.Infof("Setting rancher.services_include. %s=true", serviceName)
if err := config.Set("rancher.services_include."+serviceName, "true"); err != nil {
log.Error(err)
}
// } else {
// log.Infof("Skipping %s, can't get %s.yml file", serviceName, serviceName)
// }
}
// } else {
// log.Infof("Skipping %s, can't get %s.yml file", serviceName, serviceName)
// }
}